Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
site/public/
public/
.idea

.DS_Store
8 changes: 6 additions & 2 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,14 @@ feed_filenames = ["rss.xml"]
#output_dir
#preserve_dotfiles_in_output
[link_checker]
# freedesktop.org returns 418 to bots but works fine in browsers
# freedesktop.org returns 418 to bots but works fine in browsers.
# YouTube aggressively rate-limits (429) Zola's link checker once a page
# links to more than a couple of videos, even though the links work fine
# in a browser - skip it rather than have that fail CI.
skip_prefixes = [
"https://www.freedesktop.org/",
"https://www.youtube.com/",
"https://youtu.be/",
]
#slugify
#search
Expand All @@ -56,7 +61,6 @@ juice_logo_path = "logo.png"
juice_extra_menu = [
{ title = "About", link = "/about", external = false },
{ title = "Docs", link = "https://bootc-dev.github.io/bootc/", external = true },
{ title = "News", link = "/news", external = false },
{ title = "Blog", link = "/blog", external = false },
{ title = "GitHub", link = "https://github.com/bootc-dev/bootc", external = true },
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title = "Bootc Community Meeting Notes - 11 July 2025"
date = 2025-07-11
slug = "2025-july-11-community-meeting"
aliases = ["/news/2025-july-11-community-meeting/"]
+++

### Attendees:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title = "Bootc Community Meeting Notes - 18 July 2025"
date = 2025-07-18
slug = "2025-july-18-community-meeting"
aliases = ["/news/2025-july-18-community-meeting/"]
+++

### Attendees:
Expand Down
1 change: 1 addition & 0 deletions content/blog/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ weight = 8
sort_by = "date"
template = "blog.html"
page_template = "blog-page.html"
aliases = ["/news/"]
+++
7 changes: 0 additions & 7 deletions content/news/_index.md

This file was deleted.

9 changes: 9 additions & 0 deletions templates/blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{% extends "juice/templates/blog.html" %}

{# The theme's default sidebar just repeats the same post list shown in the
main content above as an "Archive" - drop it instead of showing every
post twice on the same page. #}
{% block sidebar %}
<div class="sidebar">
</div>
{% endblock sidebar %}
21 changes: 21 additions & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,27 @@ <h3 class="title-text text-center">
/>
{% endblock fonts %}

{% block content %}
<div id="features" class="heading-text">Overview</div>
{{ section.content | safe }}

<div class="heading-text">Latest from the Blog</div>
<ul>
{% set blog = get_section(path="blog/_index.md") %}
{% for post in blog.pages | slice(end=3) %}
<li>
<a href="{{ post.permalink | safe }}">
<strong class="title article-title">{{ post.title }}</strong>
</a>
<div>
<span class="subtext">{{ post.date | date(format="%B %d, %Y") }}</span>
</div>
</li>
{% endfor %}
</ul>
<p><a href="{{ get_url(path="blog") }}">See all posts&nbsp;&raquo;</a></p>
{% endblock content %}

{% block sidebar %}
<div class="sidebar">
</div>
Expand Down
25 changes: 0 additions & 25 deletions templates/news-page.html

This file was deleted.