Skip to content

Commit 104e836

Browse files
committed
Add notes tab
1 parent 6c00e51 commit 104e836

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

content/notes/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
+++
2+
title = "Notes"
3+
template = "notes.html"
4+
+++
5+
6+
## Paper I have read
7+
- [Architecture of a Database System](https://db.cs.berkeley.edu/papers/fntdb07-architecture.pdf)
8+
- [Apache Arrow DataFusion: A Fast, Embeddable, Modular Analytic Query Engine](https://github.com/apache/datafusion/files/15149988/DataFusion_Query_Engine___SIGMOD_2024-FINAL-mk4.pdf)
9+
- [The Google File System](https://static.googleusercontent.com/media/research.google.com/zh-CN//archive/gfs-sosp2003.pdf)

templates/base.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<li><a href="/">Home</a></li>
2424
<li><a href="/projects">Projects</a></li>
2525
<li><a href="/blog">Blog</a></li>
26+
<li><a href="/notes">Notes</a></li>
2627
<li><a href="/about">About</a></li>
2728
</ul>
2829
</nav>

templates/notes.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{% extends "base.html" %}
2+
3+
{% block content %}
4+
<div class="notes">
5+
<h1>
6+
{{ page.title }}
7+
</h1>
8+
<div class="notes__content">{{ page.content | safe }}</div>
9+
</div>
10+
{% endblock content %}

0 commit comments

Comments
 (0)