Posts from '2024'
Marmite Command Line Interface
Marmite CLI is designed to be always executed pointing to an input_folder where the markdown content is located, and besides generating the site it comes with other useful features. The basic usage is very simple: $ marmite input_folder Site generate ... read more →
Hello Streams
This content does not show on index page and also does not show on main rss feed. Because this content defines a custom stream on the frontmatter --- stream: alt --- # Alternative Stream This will show only on `alt.html` and will be listed only on ... read more →
Python Tutorial - Part 3: Collections and Data Structures
Third part of our Python tutorial series covering lists, tuples, and dictionaries read more →
Python Tutorial - Part 2: Data Types and Variables
Second part of our Python tutorial series focusing on data types and variables read more →
Python Tutorial - Part 1: Getting Started
First part of our comprehensive Python tutorial series covering the basics read more →
Getting started
Getting started
☆Learn how to create your blog with Marmite in minutes, you can start with zero-config and then customize gradually later. Not convinced yet? Read why-to-use-marmite Quick Start Installation Starting your site project For a simple website marmite do ... read more →
Porque usar o Marmite?
Marmite e um gerador de sites estaticos simples, facil e opinativo. Marmite nao exige uma estrutura de pastas especifica ou configuracao complexa, o objetivo e que um blog possa ser gerado simplesmente executando o Marmite em uma pasta com arquivos ... read more →
Why to use Marmite?
Marmite is a simple, easy and opinionated static site generator. Marmite doesn't require specific folder structure or complex configuration, the goal is that a blog can be generated simply by running Marmite on a folder with Markdown and media files ... read more →
Content Types and Taxonomy
Marmite separates content in two kinds, posts and pages. An opinionated decision of marmite is how it makes the distinction. Posts If content has a date it is a Post! Instead of having to mark if a content is a page via metadata, Marmite takes the si ... read more →
Customizing Templates
Marmite uses Tera as its template parser, the language is very similar to Jinja or Twig. Important always link relative to the current path starting with ./ If absolute url is needed then use {{ url_for(path="path", abs=true) }} template f ... read more →