-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath.html
More file actions
42 lines (34 loc) · 993 Bytes
/
math.html
File metadata and controls
42 lines (34 loc) · 993 Bytes
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
---
layout: default
---
{% if page.url == "/" %}
{% for post in site.math.tags.pinned %}
<article class="post">
<p class="pinned-article"><b>📌 Pinned Article</b></p>
<h1>
<a href="{{ site.baseurl }}{{ post.url }}">
{{ post.title }}
</a>
</h1>
<div class="entry">
<p>
{{ post.excerpt }}
</p>
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">
Read More
</a>
</article>
{% endfor %}
{% endif %}
<div class="posts">
{% for post in site.math %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{{ post.excerpt }}
</div>
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>