Start blogging in minutes with Zola and Linkita.
- On the top right of this page, click "Use this template" → "Create a new repository"
- Replace placeholders in
content/_index.mdandzola.toml - Save your profile photo to
static/profile.png(or change the path to your image inzola.toml) - Start writing in
content/blog/. Seecontent/blog/hello.mdfor an example
Note: an error like Tried to build search index for language ko which is not supported,
means Zola does not support search for that language.
To disable search, set build_search_index = false in zola.toml
Tip
Take a look through zola.toml to customise further.
- Install Zola
- Clone your repository
- Run
git submodule update --init --recursive - Run
zola serve - Visit http://127.0.0.1:1111/
Refer to the Zola documentation
git submodule update --remote themes/linkitaIf you prefer to use the GitHub mirror or your own fork of the theme, you can update the submodule URL:
git submodule set-url themes/linkita https://github.com/salif/linkita.gitNote
If you are using Zola versions prior to 0.22.1, rename zola.toml to config.toml.
For Zola versions older than 0.22.0, syntax highlighting is configured directly under the [markdown] block. Replace the [markdown.highlighting] section with the following:
# Configuration of the Markdown rendering
[markdown]
# When set to "true", all code blocks are highlighted.
highlight_code = true
# When set to "true", missing highlight languages are treated as errors. Defaults to false.
error_on_missing_highlight = false
# A list of directories used to search for additional `.sublime-syntax` and `.tmTheme` files.
extra_syntaxes_and_themes = []
# The theme to use for code highlighting.
highlight_theme = "boron"