-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues with initial installation #5
Comments
I'm on # ...
# When set to "true", a feed is automatically generated.
generate_feeds = false
# The filenames to use for the feeds. Used as the template filenames, too.
# Defaults to ["atom.xml"], which has a built-in template that renders an Atom 1.0 feed.
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
feed_filenames = ["atom.xml"]
# ... this change causes building the site with PaperMod to break in a variety of places, specifically in the following templates that reference the
Aside from overriding these templates in my own project, is there a known-workaround for dealing with this issue? Would you be open to PR's to fix the templates in this repo directly? |
Sure thing, please feel free! Thanks! |
Error: Failed to serve the site I still encounter this problem when run |
Thank you for the theme! I had some issue setting up papermod from the given instructions. These were the three things tripping me up:
This was solved by adding
to the main body of the config
The installation procedure does mention to copy sample files, which makes the extra config required. But the extra config is missing in the installation procedure.
This was solved by adding the
[extra.papermod]
section of the sample config to my config.posts/_index.md
not foundThis is a misunderstanding between an initial empty setup of zola and the theme.
a)
zola init
creates an emptycontent
directory alreadyb)
cp -r themes/papermod/content content
as outlined in the installation procedure actually actually then copies the content into the existingcontent
, resulting in a directory structure likeThis was solved via
The text was updated successfully, but these errors were encountered: