mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
112 lines
4.5 KiB
HTML
112 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
{{ if !isset(Title) }}
|
|
{{ Title := "PixivFE" }}
|
|
{{ end }}
|
|
<title>{{ Title }} - PixivFE</title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="description" content="View this page on PixivFE." />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self'" />
|
|
<meta name="referrer" content="no-referrer, same-origin" />
|
|
<link href="/css/style.css" rel="stylesheet" />
|
|
<link href="/css/template.css" rel="stylesheet" />
|
|
|
|
|
|
{{ if BaseURL }}
|
|
<meta property="og:site_name" content="PixivFE" />
|
|
<meta property="og:title" content="{{ Title }}">
|
|
<meta property="og:type" content="article" />
|
|
<meta property="og:url" content="{{ FullURL }}">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
{{ if isset(PageType) }}
|
|
|
|
{{ if PageType == "artwork" }}
|
|
{{ if ! Illust.XRestrict }}
|
|
<meta property="og:description" content="View this artwork by {{ Illust.User.Name }} on PixivFE.">
|
|
<meta property="og:image" content="{{ Illust.Images[0].Large }}">
|
|
{{ else }}
|
|
<meta property="og:description" content="View this (explicit) artwork by {{ Illust.User.Name }} on PixivFE.">
|
|
<meta property="og:image" content="{{ BaseURL }}/assets/banner.jpg">
|
|
{{ end }}
|
|
|
|
|
|
{{ else if PageType == "user" }}
|
|
<meta property="og:description" content="View this user's profile on PixivFE.">
|
|
{{ if User.BackgroundImage }}
|
|
<meta property="og:image" content="{{ User.BackgroundImage }}">
|
|
{{ else }}
|
|
<meta property="og:image" content="{{ User.Avatar }}">
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
|
|
{{ else }}
|
|
<meta property="og:description" content="View this page on PixivFE. A privacy respecting frontend for Pixiv.">
|
|
<meta property="og:image" content="{{ BaseURL }}/assets/banner.jpg">
|
|
{{ end }}
|
|
{{ end }}
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar">
|
|
<ul class="navbar-list">
|
|
<li class="navbar-item">
|
|
<input type="checkbox" class="sidebar-toggler" id="sidebar-toggler" />
|
|
<label for="sidebar-toggler" class="sidebar-label">
|
|
<img src="/assets/menu-thin.png" alt="Menu" width="30" height="30" />
|
|
</label>
|
|
|
|
<div class="sidebar">
|
|
<ul class="sidebar-list">
|
|
<a class="sidebar-item" href="/discovery">
|
|
<img src="/assets/compass.png" alt="icon" />Discovery</a>
|
|
<a class="sidebar-item" href="/ranking">
|
|
<img src="/assets/crown.png" alt="icon" />Ranking</a>
|
|
<a class="sidebar-item" href="/newest">
|
|
<img src="/assets/sparkling.png" alt="icon" />Newest</a>
|
|
<br />
|
|
<a class="sidebar-item" href="/self/following_works">
|
|
<img src="/assets/users.png" alt="icon" />Latest by followed</a>
|
|
<a class="sidebar-item" href="/self/bookmarks">
|
|
<img src="/assets/heart.png" alt="icon" />Your bookmarks</a>
|
|
<a class="sidebar-item" href="/self">
|
|
<img src="/assets/user.png" alt="icon" />Your profile</a>
|
|
<br />
|
|
<a class="sidebar-item" href="/settings">
|
|
<img src="/assets/settings.png" alt="icon" />Settings</a>
|
|
</ul>
|
|
</div>
|
|
|
|
<a href="/" class="navbar-brand">
|
|
<img src="/favicon.ico" alt="PixivFE's logo" />
|
|
<b>PixivFE</b>
|
|
</a>
|
|
</li>
|
|
<li class="navbar-item search-bar">
|
|
<form class="search-form" action="/tags" method="post" autocomplete="off">
|
|
<input type="text" name="name" class="search-form-text" placeholder="⌕ Search artworks..." />
|
|
<input type="submit" hidden />
|
|
</form>
|
|
</li>
|
|
<li class="navbar-item navbar-buttons">
|
|
<a href="/settings" class="navbar-button">
|
|
<img src="/assets/settings.png" alt="Settings" width="30" height="30" />
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{{ embed() }}
|
|
|
|
<div class="footer">
|
|
<a href="https://codeberg.org/VnPower/pixivfe">
|
|
<p>Join the development on Codeberg!</p>
|
|
</a>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|