This new approach makes sure the input field is hidden on browsers which ignore `display:none`, such as w3m or lynx.
		
			
				
	
	
		
			16 lines
		
	
	
		
			321 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			321 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "index.html" %}
 | 
						|
 | 
						|
{% block title %}
 | 
						|
	{{ section.title }} — {{ config.title }}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
	<h1>{{ section.title }}</h1>
 | 
						|
	<div class="search-wrapper"></div>
 | 
						|
	{{ macros::list_posts() }}
 | 
						|
{% endblock content %}
 | 
						|
 | 
						|
{% block script %}
 | 
						|
	<script src="/js/search.js"></script>
 | 
						|
{% endblock %}
 |