blob: 74e9a0f4becf0491e5d068d10cdd40a6b745cc8c (
plain)
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
|
{% extends "base.html" %} {% block content %}
<h2>welcome!</h2>
<p>
I'm a computer engineering undergrad studying in Toronto. This is my personal
site where I sometimes publish long form posts on topics I'm interested in, or
short "logs" for information I want to remember.
</p>
<span>Find me on:</span>
<ul>
<li>email: <a href="mailto:mail@4kb.net">mail@4kb.net</a></li>
<li>github: <a href="https://github.com/kbujari">kbujari</a></li>
</ul>
<!--<h3>Recent Posts</h3>-->
<!---->
<!--{% set section = get_section(path="posts/_index.md") %}-->
<!---->
<!--<ul>-->
<!-- {% for page in section.pages | slice(end=4) %}-->
<!-- <li>-->
<!-- <span>[{{ page.date }}]</span>-->
<!-- <a href="{{ page.permalink | safe }}">{{ page.title }}</a>-->
<!-- </li>-->
<!-- {% endfor %}-->
<!--</ul>-->
<h3>Recent Logs</h3>
{% set section = get_section(path="log/_index.md") %}
<ul>
{% for page in section.pages | slice(end=4) %}
<li>
<span>[{{ page.date }}]</span>
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
</li>
{% endfor %}
</ul>
{% endblock content %}
|