-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsketchbook.html
More file actions
44 lines (37 loc) · 1.37 KB
/
sketchbook.html
File metadata and controls
44 lines (37 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: home
title: notes
---
<p>This section features work in progress, ideas, writings, and more. It serves as a space to archive and showcase my creative processes.</p>
<hr class="col-12 col-lg-6">
{% for tag in site.tags %}
<a class="{% if tag.url == page.url %}active{% endif %}" href="{{ tag.url }}">{{ tag.url | remove: "tags" | replace: "/","" }}</a>  
{% endfor %}
<hr class="col-12 col-lg-6">
<article class="article-list col-12 col-lg-6 ">
{% for post in site.posts %}
<li class="article-name ">
<a href="{{ post.url }}">{{ post.title }}</a>
<time class="text-align-end">{{ post.date | date: "%b %d, %Y" }}</time>
</li>
{% endfor %}
</article>
<!--<div id="search-container">
<input type="text" id="search-input" placeholder="search...">
<ul id="results-container" style="color: rgb(156, 87, 221) !important;"></ul>
</div>-->
<!-- Script pointing to search-script.js -->
<script src="/search.js" type="text/javascript"></script>
<!-- Configuration -->
<script>
SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
json: '/search.json',
searchResultTemplate: '<li><a href="{url}" title="{description}">{title}</a></li>',
noResultsText: 'No results found',
limit: 10,
fuzzy: false,
exclude: ['Welcome']
})
</script>