You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
659 B
17 lines
659 B
<div id="menu"> |
|
<nav> |
|
<ul> |
|
<li><a href="{{ url_for('index', _external=False) }}">[[🧠]]</a></li> |
|
{% for cat in catList : %} |
|
<li><a href="{{ url_for('index', _external=False) }}cat/{{cat}}">{{cat}}</a></li> |
|
{% endfor %} |
|
<li><a href="{{ url_for('index', _external=False) }}info">info</a></li> |
|
</ul> |
|
</nav> |
|
<div id="search-box"> |
|
<form action="/search" method="POST"> |
|
<input type="text" name="query" placeholder="Enter search query"> |
|
<button type="submit">~~></button> |
|
</form> |
|
</div> |
|
</div>
|
|
|