invidious-mod-JP/src/invidious/views/template.ecr

94 lines
3.5 KiB
Plaintext
Raw Normal View History

2017-11-23 07:48:55 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2018-08-03 23:17:19 +00:00
<%= yield_content "header" %>
2018-02-07 00:52:01 +00:00
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css">
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsive-min.css">
<link rel="stylesheet" href="https://unpkg.com/ionicons@4.2.6/dist/css/ionicons.min.css">
2018-04-14 02:32:14 +00:00
<link rel="stylesheet" href="/css/default.css">
2018-07-16 16:24:24 +00:00
<% if env.get?("user") && env.get("user").as(User).preferences.dark_mode %>
2018-04-14 02:32:14 +00:00
<link rel="stylesheet" href="/css/darktheme.css">
<% else %>
<link rel="stylesheet" href="/css/lighttheme.css">
<% end %>
2017-11-23 07:48:55 +00:00
</head>
<body>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-4-24"></div>
<div class="pure-u-1 pure-u-md-16-24">
2018-08-05 04:07:38 +00:00
<div class="pure-g navbar h-box">
2018-07-16 16:24:24 +00:00
<div class="pure-u-1 pure-u-md-4-24">
<a href="/" class="index-link pure-menu-heading">Invidious</a>
</div>
<div class="pure-u-1 pure-u-md-12-24 searchbar">
<form class="pure-form" action="/search" method="get">
2018-04-14 02:32:14 +00:00
<fieldset>
<input type="search" style="width:100%;" name="q" placeholder="search" value="<%= env.params.query["q"]? %>">
</fieldset>
</form>
</div>
<div class="pure-u-1 pure-u-md-8-24 user-field">
2018-07-16 16:24:24 +00:00
<% if env.get? "user" %>
<div class="pure-u-1-4">
2018-08-17 15:19:20 +00:00
<a href="/toggle_theme?referer=<%= env.get("current_page") %>" class="pure-menu-heading">
<% preferences = env.get("user").as(User).preferences %>
<% if preferences.dark_mode %>
<i class="icon ion-ios-sunny"></i>
<% else %>
<i class="icon ion-ios-moon"></i>
<% end %>
</a>
</div>
<div class="pure-u-1-4">
<a href="/feed/subscriptions" class="pure-menu-heading">
<% notification_count = env.get("user").as(User).notifications.size %>
<% if notification_count > 0 %>
<%= notification_count %> <i class="icon ion-ios-notifications"></i>
<% else %>
<i class="icon ion-ios-notifications-outline"></i>
<% end %>
</a>
</div>
<div class="pure-u-1-4">
2018-08-17 15:19:20 +00:00
<a href="/preferences?referer=<%= env.get("current_page") %>" class="pure-menu-heading">
<i class="icon ion-ios-cog"></i>
</a>
</div>
<div class="pure-u-1-4">
2018-08-17 15:19:20 +00:00
<a href="/signout?referer=<%= env.get("current_page") %>" class="pure-menu-heading">Sign out</a>
</div>
2018-03-22 17:44:36 +00:00
<% else %>
2018-08-17 15:19:20 +00:00
<a href="/login?referer=<%= env.get("current_page") %>" class="pure-menu-heading">Login</a>
2018-03-22 17:44:36 +00:00
<% end %>
2018-03-16 16:40:29 +00:00
</div>
</div>
2017-11-23 07:48:55 +00:00
<%= content %>
<div class="footer">
Released under AGPLv3 by <a href="https://github.com/omarroth">Omar
Roth</a>.
Source available <a
href="https://github.com/omarroth/invidious">here</a>.
2018-08-25 20:43:39 +00:00
<p>Liberapay:
<a href="https://liberapay.com/omarroth">
https://liberapay.com/omarroth
</a>
</p>
2018-08-16 01:36:21 +00:00
<p>Patreon:
<a href="https://patreon.com/omarroth">
https://patreon.com/omarroth
</a>
</p>
<p>BTC: 356DpZyMXu6rYd55Yqzjs29n79kGKWcYrY</p>
<p>BCH: qq4ptclkzej5eza6a50et5ggc58hxsq5aylqut2npk</p>
</div>
2017-11-23 07:48:55 +00:00
</div>
<div class="pure-u-1 pure-u-md-4-24"></div>
2017-11-23 07:48:55 +00:00
</div>
</body>
2018-02-06 01:11:57 +00:00
</html>