Static website generator inspired by jekyll based on flask.
Project description
About
Flekky is a static website generator inspired by Jekyll but written in python and based on Flask. It is basically a wrapper around the excellent Frozen Flask and Flask FlatPages as described in this article by Nicolas Perriault.
So what does it do? It allows you to write templates, assets and contents for your website and bake all that into static HTML. You can than deploy that HTML on any webserver and do not have to worry about anything. Jinja2 is used for templating. Markdown is used for creating content.
There are many static website generators out there of which Jekyll is arguably the most popular. You are probably better of with that. But if you like Flask and have fun experimenting with things you might give Flekky a try.
Quickstart
$ pip install flekky $ flekky init $ flekky build
Basic Usage
To start a new project, run the init command:
$ flekky init
You can generate static HTML by using the build command:
$ flekky build
Flekky also comes with a built-in development server that will allow you to preview what the generated site will look like in your browser locally:
$ flekky serve
File structure
A basic Flekky site usually looks like this:
_source ├── pages │ ├── index.md │ └── test.md ├── static │ ├── css │ │ └── style.css │ └── js └── templates ├── base.html ├── layout │ ├── category.html │ ├── default.html │ ├── post.html │ └── tag.html └── partial.html
An overview of what each of them does:
pages: Your dynamic content, so to speak. These are Markdown files, but they also contain some YAML data at the top. index.md is special because all its metadata is added to site , so you can use it to set the title of the complete website.
static: Static files like CSS, JavaScript and images.
templates: Each page can select a layout that is used to render that page. But you will probably also want to include a base.html that these layouts can extend and maybe some partials that can be included.
Any additional files from the root folder that do not begin with an underscore (_) or dot (.) will be copied verbatim.
Command-line options
Flekky has several command-line options:
general
--source: directory where Flekky will read files (default: _source)
--future: include pages with dates in the future (default: false)
--unpublished: include unpublished pages (default: false)
build
--destination: directory where Flekky will write files (default: <source>_build)
serve
--port: port to run at (default: 8000)
Variables
Flekky makes a variety of data available to the templating system. The following is a reference of the available data.
page
A page is a Markdown file in the pages folder. However, at the top of the file you can (and should) set some meta data using YAML syntax. All key-value pairs defined here will be available in the templates. But some fields also have a special meaning:
title: Title for this page.
layout: Select a template from the layout folder for rendering (default: default).
published: Unpublished pages will not be included in the website. This can be disabled using the --unpublished command-line option.
date: Pages with dates in the future are not included in the website. This can be disabled using the --future command-line option.
The content of a page can be accessed via its html attribute. However, in many cases you may want to shift all headings by one or two levels in order to fit the content into the document outline. This can be done by using fix_outline(baseheading_level).
site
The site object stores all data that applies to the whole project. This also includes any metadata from index.md.
title: Title of the website.
time: Current time. This can be used to display the time of the last build.
pages: A list of all pages.
config: The complete configuration.
Differences from Jekyll
Flekky aims at being very similar to Jekyll. However it is far from being a drop-in replacement. Some of the missing features might be added in the future. For now, these are some of the most important differences:
written in python and based on Flask
Markdown only (though it should be easy to extend)
slightly different directory structure
no configuration file like _config.yml
templates instead of _includes and _layouts
pages instead of top level files and _posts
no drafts
no data files
date is not encoded in file name
only pages that are linked to are included in the build
no build-in SCSS or CoffeeScript support
different (but similar) templating syntax
no separators before and after YAML data in page files
no build-in pagination
no build-in plugin system but the rich Flask ecosystem
License
Copyright (C) 2014 Tobias Bengfort tobias.bengfort@gmx.net
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file flekky-0.4.1.tar.gz
.
File metadata
- Download URL: flekky-0.4.1.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae5666de7d331e0148b8793bde110401270aa235ceb487d6a182560b2df9019b |
|
MD5 | d39f4a645f7a7da0d09141261d161139 |
|
BLAKE2b-256 | 307c320f4905de2f1641ffa45fd6aafa551731a0684620f87c51e051ed2615e3 |