Skip to content

Commit

Permalink
Fix links menu responsiveness on mobile, fix feeds config (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
nizamiza committed Aug 19, 2024
1 parent dbbfbce commit ffbf0d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ compile_sass = false
build_search_index = true

# Generate an RSS feed
generate_feed = true
generate_feeds = true

# The site title, author and description; used in feeds by default.
title = "Helix"
Expand Down
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<h1>Helix</h1>
</a>
<div style="flex: 1"></div>
<menu>
<menu style="display: flex; flex-wrap: wrap;">
<a href="/news">News</a>
<a href="https://docs.helix-editor.com">Documentation</a>
<a href="https://github.com/helix-editor/helix">GitHub</a>
Expand Down

2 comments on commit ffbf0d3

@mweinelt
Copy link

@mweinelt mweinelt commented on ffbf0d3 Aug 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For some reason the atom.xml went 404 with this change for me.

https://helix-editor.com/atom.xml

@gabydd
Copy link
Member

@gabydd gabydd commented on ffbf0d3 Aug 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we are probably on too low of a version 0.17.1 is the version we use in CI, getzola/zola#2477 this was config option was renamed https://github.com/getzola/zola/releases/tag/v0.19.0

Please sign in to comment.