Fork du thème Sam pour Zola. Ajoute la possibilité de marquer des auteurs·trices en français.
Go to file
June Hardy 1c44ac2019 Mise à jour README 2020-06-10 19:57:56 +02:00
content Populate 2020-06-10 19:36:40 +02:00
sass Populate 2020-06-10 19:36:40 +02:00
static Populate 2020-06-10 19:36:40 +02:00
templates Populate 2020-06-10 19:36:40 +02:00
upstream Populate 2020-06-10 19:36:40 +02:00
LICENSE Populate 2020-06-10 19:36:40 +02:00
README.md Mise à jour README 2020-06-10 19:57:56 +02:00
config.toml Populate 2020-06-10 19:36:40 +02:00
screenshot.png Populate 2020-06-10 19:36:40 +02:00
theme.toml Populate 2020-06-10 19:36:40 +02:00

README.md

Build Status Demo

Sam

A Simple and Minimalist theme with a focus on typography and content.

Zola port of hugo-theme-sam.

Screenshot

Original

This is a port of the original hugo-theme-sam theme for Hugo (License).

See upstream for source code take from there.

Installation

The easiest way to install this theme is to either clone it ...

git clone https://labo.lacoloc.cafe/june/zola-sam.git themes/sam

... or to use it as a submodule.

git submodule add https://labo.lacoloc.cafe/june/zola-sam.git themes/sam

Either way, you will have to enable the theme in your config.toml.

theme = "sam"

Options

See config.toml for an example configuration.

Menu

The menu on the index page is created as follows: If the sam_menu variable is set, it gets used.

[extra]
sam_menu = [
    { text = "posts", link = "/posts" },
    { text = "about", link = "/about" },
    { text = "github", link = "https://github.com" }
]

If it is not set, all sections under content will get linked.

Bottom menu

This variable decides wether the menu - as mentioned above - will also be displayed at the bottom of pages.

Default: false

[extra]
sam_bottom_menu = true

home

Sets the name for all links referring to the home page in the menus and the 404 page.

Default: home

[extra]
home = "home"

Date format

Specifies how to display dates. The format is described here.

Default: %a %b %e, %Y

[extra]
date_format = "%a %b %e, %Y"

Word count and reading time

You can enable or disable word count and reading time for posts across the whole site:

Default: true (both)

[extra]
show_word_count = true
show_reading_time = true

If enabled, you can opt-out per page via front-matter:

Default: false (both)

+++
[extra]
hide_word_count = true
hide_reading_time = true
+++

Disable page header

If you want to disable the complete header of a page (for example a page which is explicitly not a post), you can do so via front-matter:

Default: false

+++
[extra]
no_header = true
+++

To place some text at the end of pages, set the following:

[extra.sam_footer]
text = "Some footer text."