Skip to content

Commit

Permalink
Fixed navbar active section highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
robzedgames committed Oct 30, 2024
1 parent dadbac6 commit 863450f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
6 changes: 4 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
url: "https://robzed.com"
permalink: /articles/:title.html
plugins:
- jekyll-sitemap
- jekyll-seo-tag
collections:
categories:
output: true
output: true
posts:
output: true
permalink: /articles/:title.html
18 changes: 10 additions & 8 deletions articles.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
layout: default
title: Articles
---
<h3 class="post-title">Articles</h3>
<div class="row">
<h3 class="post-title">Articles</h3>

<ul>
{% for post in site.posts %}
<li>
{{ post.date | date_to_string }} - <strong><a href="{{ post.url }}">{{ post.title }}</strong>: {{ post.subtitle }}</a>
</li>
{% endfor %}
</ul>
<ul>
{% for post in site.posts %}
<li>
{{ post.date | date_to_string }} - <strong><a href="{{ post.url }}">{{ post.title }}</strong>: {{ post.subtitle }}</a>
</li>
{% endfor %}
</ul>
</div>

0 comments on commit 863450f

Please sign in to comment.