feat: add blog #7
|
@ -20,7 +20,7 @@ footer: '© 2025 Distrust LLC'
|
|||
|
||||
theme: jekyll-theme-console
|
||||
|
||||
permalink: /:title/
|
||||
permalink: blog/:title/
|
||||
|
||||
plugins:
|
||||
- jekyll-feed
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<div class="menu">
|
||||
<div class="left-menu">
|
||||
<a id="home-link" href="/index.html">
|
||||
<img class="menu-logo" src="../assets/base/distrust-text-white.svg"
|
||||
<img class="menu-logo" src="/assets/base/distrust-text-white.svg"
|
||||
anton marked this conversation as resolved
Outdated
|
||||
alt="Distrust broken chain logo with white text" />
|
||||
</a>
|
||||
</div>
|
||||
|
@ -22,7 +22,7 @@
|
|||
</li>
|
||||
<li class="show">
|
||||
<a href="/feed.xml" style="vertical-align: middle;">
|
||||
<img style="filter: grayscale(100%); width: 22px; vertical-align: sub" src="../assets/base/rss.png" />
|
||||
<img style="filter: grayscale(100%); width: 22px; vertical-align: sub" src="/assets/base/rss.png" />
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
|
||||
{% include companies-carousel.html %}
|
||||
|
||||
<<<<<<< HEAD
|
||||
<section>
|
||||
<div class="center">
|
||||
<div class="capsule">what we do</div>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
layout: post
|
||||
title: Adventures In Supply Chain Integrity
|
||||
date: 2024-03-28
|
||||
cover_image: "../assets/images/whale_shark.jpg"
|
||||
cover_image: "/assets/images/whale_shark.jpg"
|
||||
anton marked this conversation as resolved
Outdated
danny
commented
Absolute path Absolute path
|
||||
authors:
|
||||
- name: Ryan Heywood
|
||||
bio: Professional bonker / twerker.
|
||||
|
|
4
blog.md
4
blog.md
|
@ -6,13 +6,13 @@ permalink: /blog.html
|
|||
<div class="posts">
|
||||
{% for post in site.posts %}
|
||||
<article class="post">
|
||||
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
|
||||
<h1><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h1>
|
||||
anton marked this conversation as resolved
Outdated
danny
commented
I'd probably include the title in the link as well
I'd probably include the title in the link as well
```
<a ... title="{{ post.title}}>...</a>
```
|
||||
|
||||
<div class="entry">
|
||||
{{ post.excerpt }}
|
||||
</div>
|
||||
<h4>Written on {{ post.date | date: "%B %e, %Y" }}</h4>
|
||||
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
|
||||
<a href="{{ post.url }}" class="read-more">Read More</a>
|
||||
anton marked this conversation as resolved
Outdated
danny
commented
Generally I'd avoid using the baseurl. This makes local development more difficult and prevents have multiple domains with the same content (eg. deploying as a Tor Hidden Service) Generally I'd avoid using the baseurl. This makes local development more difficult and prevents have multiple domains with the same content (eg. deploying as a Tor Hidden Service)
|
||||
</article>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue
Same here