Merge pull request #1977 from syeopite/add996
Change empty home page to search engine like layoutpull/2108/head
commit
b9e57d0283
@ -0,0 +1,16 @@
|
|||||||
|
#search-widget {
|
||||||
|
text-align: center;
|
||||||
|
margin: 20vh 0 50px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logo > h1 {
|
||||||
|
font-size: 3.5em;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1500px) and (max-height: 1000px) {
|
||||||
|
#logo > h1 {
|
||||||
|
font-size: 10vmin;
|
||||||
|
}
|
||||||
|
}
|
@ -1,8 +0,0 @@
|
|||||||
<% content_for "header" do %>
|
|
||||||
<meta name="description" content="<%= translate(locale, "An alternative front-end to YouTube") %>">
|
|
||||||
<title>
|
|
||||||
Invidious
|
|
||||||
</title>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<%= rendered "components/feed_menu" %>
|
|
@ -0,0 +1,24 @@
|
|||||||
|
<% content_for "header" do %>
|
||||||
|
<meta name="description" content="<%= translate(locale, "An alternative front-end to YouTube") %>">
|
||||||
|
<title>
|
||||||
|
Invidious
|
||||||
|
</title>
|
||||||
|
<link rel="stylesheet" href="/css/empty.css?v=<%= ASSET_COMMIT %>">
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<%= rendered "components/feed_menu" %>
|
||||||
|
|
||||||
|
<div class="pure-g h-box" id="search-widget">
|
||||||
|
<div class="pure-u-1" id="logo">
|
||||||
|
<h1 href="/" class="pure-menu-heading">Invidious</h1>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1-4"></div>
|
||||||
|
<div class="pure-u-1 pure-u-md-12-24 searchbar">
|
||||||
|
<form class="pure-form" action="/search" method="get">
|
||||||
|
<fieldset>
|
||||||
|
<input type="search" style="width:100%" name="q" placeholder="<%= translate(locale, "search") %>" value="<%= env.get?("search").try {|x| HTML.escape(x.as(String)) } %>">
|
||||||
|
</fieldset>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="pure-u-1-4"></div>
|
||||||
|
</div>
|
Loading…
Reference in New Issue