-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (29 loc) · 1.29 KB
/
index.html
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
---
#
# By default, content added below the "---" mark will appear in the home page
# between the top bar and the list of recent posts.
# To change the home page layout, edit the _layouts/home.html file.
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
#
layout: home
---
<script src="{{ "/assets/mermaid-9.3.0/mermaid.js" | relative_url }}"></script>
<h1 class="page-heading"></h1><p><img src="/assets/img/banner.png" alt="A Repository of Mostly Techie Notes" /></p>
<h1 id="welcome-to-decusers-blog">Welcome to decuser’s blog</h1>
<p>Topics on this blog include computing, retro-computing, operating systems, math, and whatever other technical subjects I happen to be exploring that I find interesting enough to take and share notes about.</p>
<!-- Html Elements for Search -->
<h2 class="post-list-heading">Posts</h2>
<div id="search-container">
<input type="text" id="search-input" placeholder="search...">
<ul id="results-container"></ul>
</div>
<!-- Script pointing to search-script.js -->
<script src="/assets/js/simple-jekyll-search.min.js" type="text/javascript"></script>
<!-- Configuration -->
<script>
SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
json: '/search.json'
})
</script>