2017-11-23 01:48:55 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="/css/pure-min.css">
|
|
|
|
<link rel="stylesheet" href="/css/grids-responsive-min.css">
|
2017-12-30 15:20:13 -06:00
|
|
|
<link rel="stylesheet" href="/css/font-awesome.min.css">
|
2018-01-07 11:40:03 -06:00
|
|
|
<link rel="stylesheet" href="/css/custom.css">
|
2018-01-21 11:06:27 -06:00
|
|
|
<%= yield_content "header" %>
|
2017-11-23 01:48:55 -06:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="pure-g">
|
2018-02-05 18:41:24 -06:00
|
|
|
<div class="pure-u-1 pure-u-md-1-5"></div>
|
|
|
|
<div class="pure-u-1 pure-u-md-3-5">
|
2017-12-30 15:22:55 -06:00
|
|
|
<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 01:48:55 -06:00
|
|
|
<%= content %>
|
2018-02-05 18:44:42 -06:00
|
|
|
<center style="margin:1em;">
|
2018-01-28 11:32:40 -06:00
|
|
|
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 01:48:55 -06:00
|
|
|
</div>
|
2018-02-05 18:41:24 -06:00
|
|
|
<div class="pure-u-1 pure-u-md-1-5"></div>
|
2017-11-23 01:48:55 -06:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
2018-02-05 19:11:57 -06:00
|
|
|
</html>
|