2017-11-23 13:18:55 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2018-02-07 06:22:01 +05:30
|
|
|
<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://use.fontawesome.com/releases/v5.0.6/css/all.css">
|
2018-01-07 23:10:03 +05:30
|
|
|
<link rel="stylesheet" href="/css/custom.css">
|
2018-01-21 22:36:27 +05:30
|
|
|
<%= yield_content "header" %>
|
2017-11-23 13:18:55 +05:30
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="pure-g">
|
2018-02-06 06:11:24 +05:30
|
|
|
<div class="pure-u-1 pure-u-md-1-5"></div>
|
|
|
|
<div class="pure-u-1 pure-u-md-3-5">
|
2017-12-31 02:52:55 +05:30
|
|
|
<div class="pure-g" style="padding:1em;">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-5">
|
|
|
|
<a href="/" class="pure-menu-heading">Invidious</a>
|
|
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-4-5">
|
|
|
|
<form class="pure-form" action="/search" method="get">
|
|
|
|
<input type="search" style="width:100%;" name="q" placeholder="search" value="<%= env.params.query["q"]? %>">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-11-23 13:18:55 +05:30
|
|
|
<%= content %>
|
2018-03-11 22:38:44 +05:30
|
|
|
<center class="l-box">
|
2018-01-28 23:02:40 +05:30
|
|
|
Released under AGPLv3 by <a href="https://github.com/omarroth">Omar Roth</a> -
|
|
|
|
source available <a href="https://github.com/omarroth/invidious">here</a>
|
|
|
|
</center>
|
2017-11-23 13:18:55 +05:30
|
|
|
</div>
|
2018-02-06 06:11:24 +05:30
|
|
|
<div class="pure-u-1 pure-u-md-1-5"></div>
|
2017-11-23 13:18:55 +05:30
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
2018-02-06 06:41:57 +05:30
|
|
|
</html>
|