forked from brianmaierjr/long-haul
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterview.html
More file actions
39 lines (35 loc) · 1.07 KB
/
interview.html
File metadata and controls
39 lines (35 loc) · 1.07 KB
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
---
layout: page
permalink: /interview/
title: Interview Related articles
sitemap:
priority: 0.7
changefreq: 'monthly'
lastmod: 2022-01-28T12:49:30-05:00
---
<!-- <div id="archives">
{% for category in site.categories %}
<div class="archive-group">
{% capture category_name %}{{ category | first }}{% endcapture %}
<div id="#{{ category_name | slugize }}"></div>
<p></p>
<h3 class="category-head">{{ category_name }}</h3>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<article class="archive-item">
<h4><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h4>
</article>
{% endfor %}
</div>
{% endfor %}
</div> -->
<div class="home" id="Interview">
<h1 class="pageTitle">Interview related blog posts</h1>
<div class="posts noList">
<div id="archives">
{% for post in site.categories.Interview %}
<li><span>{{ post.date | date_to_string }}</span> <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</div>
</div>
</div>