mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-10-31 04:32:02 +00:00 
			
		
		
		
	Move navbar search bar render check to templated
This commit is contained in:
		| @@ -48,7 +48,8 @@ module JSON::Serializable | ||||
|   end | ||||
| end | ||||
|  | ||||
| macro templated(filename, template = "template") | ||||
| macro templated(filename, template = "template", navbar_search = true) | ||||
|   navbar_search = {{navbar_search}} | ||||
|   render "src/invidious/views/#{{{filename}}}.ecr", "src/invidious/views/#{{{template}}}.ecr" | ||||
| end | ||||
|  | ||||
|   | ||||
| @@ -22,7 +22,7 @@ class Invidious::Routes::Misc < Invidious::Routes::BaseRoute | ||||
|         env.redirect "/feed/popular" | ||||
|       end | ||||
|     else | ||||
|       templated "search_homepage" | ||||
|       templated "search_homepage", navbar_search: false | ||||
|     end | ||||
|   end | ||||
|  | ||||
|   | ||||
| @@ -28,7 +28,7 @@ | ||||
|         <div class="pure-u-1 pure-u-md-2-24"></div> | ||||
|         <div class="pure-u-1 pure-u-md-20-24"> | ||||
|             <div class="pure-g navbar h-box"> | ||||
|                 <% if !env.get("preferences").as(Preferences).default_home.to_s.empty? || env.request.path != "/" %> | ||||
|                 <% if navbar_search %> | ||||
|                     <div class="pure-u-1 pure-u-md-4-24"> | ||||
|                         <a href="/" class="index-link pure-menu-heading">Invidious</a> | ||||
|                     </div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 syeopite
					syeopite