forked from bchiang7/bchiang7.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
posts.html
34 lines (32 loc) · 1022 Bytes
/
posts.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
---
layout: default
title: Blog
---
<div id="posts_page">
<div>
<div class="posts_title_container">
<img src="/img/logo/polygon.svg" alt="Polygon" class="polygon_logo">
<div class="posts_title">
{{ site.data.blog.title }}
</div>
<div class="posts_subtitle">
{{ site.data.blog.subtitle }}
</div>
<a href="https://www.carston.org/" target="_blank" class="arrow-link map-more-info">About me</a>
</div>
</div>
<div class="posts_content">
<div class="posts">
{% for post in site.posts %}
<a href={{post.url}}>
<div class="post_detail_container">
<div class="post_details">
<div class="post_name"> {{post.title}} </div>
<div class="post_desc"> {{post.desc}} </div>
</div>
</div>
</a>
{% endfor %}
</div>
</div>
</div>