-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
25 lines (23 loc) · 769 Bytes
/
blog.html
File metadata and controls
25 lines (23 loc) · 769 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
---
layout: default
title: Blog
---
<h1>The AI Clinic Blog</h1>
<div class="main_content">The AI Clinic blog features posts from our team and guest authors on a variety of topics
related to language models, general-purpose AI, and public interest technology.</div>
<div class="research_display">
{% for post in site.posts %}
<div class="research_card">
<div class="research_image">
<a href="{{ post.url }}">
<img class="research_thumbnail" src="{{post.thumbnail}}" alt="{{ post.title }}">
</a>
</div>
<div>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p>{{ post.writer }}<br>{{ post.day }}</p>
<p>{{ post.summary | markdownify }}</p>
</div>
</div>
{% endfor %}
</div>