diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-16 20:25:27 +0200 |
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-16 20:25:27 +0200 |
| commit | 9b4fb13f94bc8fa2f7d50519652bead8ede4ee3a (patch) | |
| tree | bf9f324c19e92a4759535cd3793366eebfae0439 /search.html | |
| parent | b07eb8d1c06e582e5f177c159d820778029a9d93 (diff) | |
move stuff around
Diffstat (limited to 'search.html')
| -rw-r--r-- | search.html | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/search.html b/search.html index ed39150..026a20c 100644 --- a/search.html +++ b/search.html @@ -13,5 +13,18 @@ toc: false </button> </form> -<div class="searchResults"></div> +<div class="searchResults"> + {% for post in site.items %} + <div class="post"> + <a href="{{ post.url }}" class="nolink block"> + <b class="title">{{ post.title }}</b> + <p class="subtitle">{{ post.subtitle }}</p> + <p class="authordate">???</p> + <input class="keywords" type="hidden" value=""/> + </a> + {% include tags.html tags=post.tags %} + </div> + {% endfor %} +</div> + |