2021-12-30 13:42:42 +00:00
{% extends "home/base.html" %}
{% block content %}
2021-12-30 15:13:47 +00:00
< div id = "player" class = "player-wrapper" > < / div >
2022-05-30 07:52:47 +00:00
< div class = "boxed-content {% if all_styles.home == " grid " % } boxed- { { grid_items } } { % endif % } " >
2021-12-30 13:42:42 +00:00
< div class = "title-bar" >
2022-03-28 05:43:57 +00:00
< h1 > Search your Archive< / h1 >
2021-12-30 13:42:42 +00:00
< / div >
< div class = "multi-search-box" >
{{ search_form }}
2022-07-23 07:10:16 +00:00
< p > Start typing or use < span class = "settings-current" > video:< / span > , < span class = "settings-current" > channel:< / span > , < span class = "settings-current" > playlist:< / span > or < span class = "settings-current" > full:< / span > keywords for advanced queries. < a href = "https://github.com/tubearchivist/tubearchivist/wiki/Search" target = "_blank" > Learn more< / a > .< / p >
2021-12-30 13:42:42 +00:00
< / div >
2021-12-30 15:13:47 +00:00
< div class = "multi-search-result" >
2021-12-30 13:42:42 +00:00
< h2 > Video Results< / h2 >
2022-05-30 07:52:47 +00:00
< div id = "video-results" class = "video-list {{ all_styles.home }} {% if all_styles.home == " grid " % } grid- { { grid_items } } { % endif % } " >
2021-12-30 13:42:42 +00:00
< p > No videos found.< / p >
< / div >
< / div >
2021-12-30 15:13:47 +00:00
< div class = "multi-search-result" >
2021-12-30 13:42:42 +00:00
< h2 > Channel Results< / h2 >
2022-01-07 11:29:25 +00:00
< div id = "channel-results" class = "channel-list {{ all_styles.channel }}" >
2021-12-30 13:42:42 +00:00
< p > No channels found.< / p >
< / div >
< / div >
2021-12-30 15:13:47 +00:00
< div class = "multi-search-result" >
2021-12-30 13:42:42 +00:00
< h2 > Playlist Results< / h2 >
2022-01-07 11:29:25 +00:00
< div id = "playlist-results" class = "playlist-list {{ all_styles.playlist }}" >
2021-12-30 13:42:42 +00:00
< p > No playlists found.< / p >
< / div >
< / div >
2022-07-20 14:49:32 +00:00
< div class = "multi-search-result" >
< h2 > Fulltext Results< / h2 >
< div id = "fulltext-results" class = "video-list list" >
< p > No fulltext results found.< / p >
< / div >
< / div >
2021-12-30 13:42:42 +00:00
< / div >
{% endblock content %}