aboutsummaryrefslogtreecommitdiff
path: root/search.html
diff options
context:
space:
mode:
Diffstat (limited to 'search.html')
-rw-r--r--search.html15
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>
+