feat: add blog #7

Manually merged
anton merged 32 commits from feat/blog into main 2025-04-03 03:34:49 +00:00
Owner
No description provided.
anton added 1 commit 2024-03-29 04:14:46 +00:00
anton added 1 commit 2024-03-29 04:17:38 +00:00
anton added 1 commit 2024-03-29 05:41:18 +00:00
ryan added 1 commit 2024-03-29 06:13:08 +00:00
anton added 1 commit 2024-03-29 06:18:03 +00:00
anton added 1 commit 2024-04-02 00:56:01 +00:00
danny reviewed 2024-04-02 04:40:22 +00:00
danny left a comment
First-time contributor

Please see https://git.distrust.co/public/website/pulls/7/files#issuecomment-385 and apply that to all references of {{ site.baseurl }}

Please see https://git.distrust.co/public/website/pulls/7/files#issuecomment-385 and apply that to all references of `{{ site.baseurl }}`
@ -1,4 +1,4 @@
<footer style="height: 40px">
<span><img src="assets/base/distrust-white.svg" width="20px" alt="copyleft"/></span> {{ site.footer }}
<span><img src="../assets/base/distrust-white.svg" width="20px" alt="copyleft"/></span> {{ site.footer }}
First-time contributor

This should use site absolute path

/assets/base/distrust-white.svg
This should use site absolute path ``` /assets/base/distrust-white.svg ```
anton marked this conversation as resolved
@ -4,3 +4,3 @@
<div>
<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"
First-time contributor

Same here

Same here
anton marked this conversation as resolved
@ -70,3 +70,3 @@
<div class="flex-container-inner">
<div class="text-well">
<h3>StageX</h3>
<h3>[Stageˣ]</h3>
First-time contributor

To support more browsers I'd probably do

[Stage<sup>x</sup>]
To support more browsers I'd probably do ``` [Stage<sup>x</sup>] ```
anton marked this conversation as resolved
@ -0,0 +2,4 @@
layout: post
title: Adventures In Supply Chain Integrity
date: 2024-03-28
cover_image: "../assets/images/whale_shark.jpg"
First-time contributor

Absolute path

Absolute path
anton marked this conversation as resolved
@ -18,2 +13,2 @@
})
.catch(error => console.error('Error loading JSON:', error));
if (window.location.pathname === "/index.html") {
fetch('../assets/js/carousel-items.json')
First-time contributor

Absolute path

Absolute path
anton marked this conversation as resolved
blog.md Outdated
@ -0,0 +6,4 @@
<div class="posts">
{% for post in site.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
First-time contributor

I'd probably include the title in the link as well

<a ... title="{{ post.title}}>...</a>
I'd probably include the title in the link as well ``` <a ... title="{{ post.title}}>...</a> ```
anton marked this conversation as resolved
blog.md Outdated
@ -0,0 +12,4 @@
{{ 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>
First-time contributor

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)
anton marked this conversation as resolved
anton added 1 commit 2024-04-23 15:28:35 +00:00
anton added 1 commit 2024-04-23 15:52:27 +00:00
anton added 1 commit 2024-04-23 15:57:27 +00:00
anton added 2 commits 2024-04-23 16:12:23 +00:00
anton added 1 commit 2024-05-07 14:47:40 +00:00
ryan added 3 commits 2024-05-14 04:57:23 +00:00
danny reviewed 2024-06-10 16:34:22 +00:00
_config.yml Outdated
@ -40,3 +41,3 @@
# Build settings
theme: jekyll-theme-console
permalink: blog/:title.html
First-time contributor

Doesn't this normally generate files/links in the format blog/:title/index.html?

Doesn't this normally generate files/links in the format `blog/:title/index.html`?
danny reviewed 2024-06-10 16:34:59 +00:00
@ -1,4 +1,4 @@
<footer style="height: 40px">
<span><img src="assets/base/distrust-white.svg" width="20px" alt="copyleft"/></span> {{ site.footer }}
<span><img src="/assets/base/distrust-white.svg" width="20px" alt="copyleft"/></span> {{ site.footer }}
First-time contributor

Would be good to use the jekyll built-in function for static assets

Would be good to use the jekyll built-in function for static assets
anton force-pushed feat/blog from 3881a8275b to 3f5242abfe 2025-03-21 04:01:31 +00:00 Compare
anton added 1 commit 2025-03-22 12:00:01 +00:00
anton added 1 commit 2025-03-22 23:10:08 +00:00
anton added 1 commit 2025-03-22 23:15:31 +00:00
anton added 1 commit 2025-03-22 23:22:53 +00:00
ryan added 1 commit 2025-03-23 00:16:37 +00:00
ryan added 1 commit 2025-03-23 02:38:36 +00:00
anton added 1 commit 2025-03-24 19:02:05 +00:00
anton added 1 commit 2025-03-28 17:01:07 +00:00
xenushka added 3 commits 2025-04-01 17:36:50 +00:00
xenushka added 1 commit 2025-04-02 03:14:54 +00:00
anton force-pushed feat/blog from 83f014707e to 863ad2c097 2025-04-02 03:20:50 +00:00 Compare
xenushka added 1 commit 2025-04-02 03:28:11 +00:00
xenushka added 1 commit 2025-04-02 03:42:05 +00:00
anton added 1 commit 2025-04-02 04:23:06 +00:00
anton added 1 commit 2025-04-02 05:04:53 +00:00
anton added 1 commit 2025-04-02 05:18:30 +00:00
anton added 1 commit 2025-04-03 03:20:55 +00:00
anton manually merged commit f9e5ef378f into main 2025-04-03 03:34:49 +00:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: public/website#7
No description provided.