[03/05/23] updated category and tag archives and added an atom feed
This commit is contained in:
parent
e66097a7c6
commit
f353e6616a
45 changed files with 3272 additions and 24 deletions
|
@ -16,16 +16,18 @@
|
|||
|
||||
<body>
|
||||
<div class="container text-start">
|
||||
{% include nav.html a=page.title b=categories %}
|
||||
{% include nav.html a=page.title %}
|
||||
<div class="col col-md-9">
|
||||
{% assign categories = page.title %}
|
||||
{% assign category = site.data.categories[categories] %}
|
||||
<h1 style="font-weight: 500;">
|
||||
{{ page.title }}
|
||||
<span style="background-color:{{category.backColor}};color:{{category.textColor}};"> <i class="fas fa-folder"></i> {{ page.title }} </span>
|
||||
</h1>
|
||||
<hr>
|
||||
<ul style="list-style-type:none;margin:0;padding:0;">
|
||||
{% for post in page.posts %}
|
||||
{% assign categories = page.title %}
|
||||
{% assign category = site.data.categories[categories] %}
|
||||
{% assign categories = post.categories %}
|
||||
{% assign category = site.data.categories[categories.first] %}
|
||||
<li>
|
||||
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
|
||||
<div style="font-family:Rubik;font-weight:500;">
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:image" content="https://andrewconl.in/assets/images/og-image-template.jpg">
|
||||
{% feed_meta %}
|
||||
<title>andrew conlin</title>
|
||||
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
@ -19,6 +20,9 @@
|
|||
<h1 style="font-weight: 500;">
|
||||
{{ page.title }}
|
||||
</h1>
|
||||
<p>
|
||||
{{ page.subtitle }}
|
||||
</p>
|
||||
{{ content }}
|
||||
<br>
|
||||
<br>
|
||||
|
|
49
_layouts/tag.html
Normal file
49
_layouts/tag.html
Normal file
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta property="og:title" content="{{ page.title }}">
|
||||
<meta property="og:image" content="https://andrewconl.in/assets/images/og-image-template.jpg">
|
||||
<meta property="og:url" content="{{ page.url }}">
|
||||
<title>andrew conlin</title>
|
||||
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/assets/css/default.css" rel="stylesheet">
|
||||
{% include style.html a=page.title %}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container text-start">
|
||||
{% include nav.html a=page.title %}
|
||||
<div class="col col-md-9">
|
||||
<h1 style="font-weight: 500;">
|
||||
<span style="font-size: 30px;"><i class="fas fa-tag"></i></span> {{ page.title }}
|
||||
</h1>
|
||||
<hr>
|
||||
<ul style="list-style-type:none;margin:0;padding:0;">
|
||||
{% for post in page.posts %}
|
||||
{% assign categories = post.categories %}
|
||||
{% assign category = site.data.categories[categories.first] %}
|
||||
<li>
|
||||
<h4><a href="{{ post.url }}">{{ post.title }}</a></h4>
|
||||
<div style="font-family:Rubik;font-weight:500;">
|
||||
<i class="fas fa-calendar"></i> {{ post.date | date_to_string }} |
|
||||
<span style="background-color:{{category.backColor}};color:{{category.textColor}};"> <i
|
||||
class="fas fa-folder"></i> {{ categories }} </span>
|
||||
</div>
|
||||
{{ post.content | strip_html | truncatewords: 30 }}
|
||||
<br>
|
||||
<br>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue