GithubHelp home page GithubHelp logo

betodealmeida / nefelibata Goto Github PK

View Code? Open in Web Editor NEW
30.0 4.0 0.0 1.3 MB

A weblog engine focusing on data ownership and persistence

License: MIT License

Python 96.90% Makefile 0.23% HTML 2.80% CSS 0.06%
blog blog-engine python3 data-ownership indieweb

nefelibata's Introduction

nefelibata

Documentation Status

PyPI - Python Version

A blog engine focusing on data ownership and persistence.

How is it different?

Nefelibata (Portuguese for "one who walks on clouds") is an IndieWeb static website generator written in Python 3 that focus on preserving your content. In order to achieve that goal, it works similarly to common static website generators, with the following design decisions:

  • Each post is a separate directory. The actual post is written in Markdown and stored as an email message, and each post can have its own images, CSS, Javascript and other files.
  • Posts are converted into HTML and/or Gemtext, and the resulting site is composed of only static files. There are no databases, and all extra data is stored in JSON files.
  • External images are locally mirrored when the site is built, and the link is altered to point to the local resource.
  • External links are saved to the Wayback Machine, and links are annotated with the archived link and date of archival, allowing readers to follow the original links even if they change in the future. The site and new posts are also automatically archived.
  • The site can be published to different locations, using a plugin architecture. Currently, nefelibata supports publishing to Amazon S3, FTP, and arbitrary commands.

The IndieWeb

Nefelibata acknowledges that most interactions occur in social networks like Twitter or Mastodon. The engine can be configured with global or per-post announcers that will post to social networks linking back to the content, so that people can comment and discuss posts outside of the site, a concept called POSSE (Publish on your Own Site, Syndicate Elsewhere) in the IndieWeb.

When the site is rebuilt, the announcers will collect any replies and store them locally, so that the comments are displayed in the site with your post. A post can be announced to multiple social networks, and the comments will be aggregated and preserved.

Getting started

Installation

First install nefelibata using a virtual environment:

$ pip install nefelibata

This will add a program called nb to your path.

If you're impatient, you can run:

$ nb init blog
$ cd blog
$ nb build

And looks at the files inside the build/ directory.

Creating the site directory

Once you have installed nefelibata you should initialize a directory that will hold your content:

$ nb init blog
$ ls blog
nefelibata.yaml  nefelibata.yaml.full  posts/  templates/

Here, the file nefelibata.yaml stores the configuration for your site. The posts/ directory will contain your posts, and should already have a directory called first/ with an initial post. The templates/ directory has the templates for generating your blog and its Atom feed, as well as a Gemini capsule. Multiple themes are supported for the HTML builder, but there's currently only one called "minimal".

Configuring your site

The file nefelibata.yaml.full has comments describing all the sections. You can edit it and rename it to nefelibata.yaml.

Creating a new post

Your skeleton blog already has a post called first/. You can edit that post, or create a new one with the command:

$ nb new "Hello, World!"

(Note that you always need to run the nb command from inside your site directory.)

This will create a new directory called hello_world/, with the following structure:

posts/hello_world/
posts/hello_world/index.mkd

If you have the EDITOR environment set, nefelibata will automatically open your editor to edit index.mkd. You can place any custom CSS, Javascript or images in the corresponding directories, or any other extra files in the hello_world/ directory.

You'll notice that the index.mkd file has headers and a body. The file itself is actually stored as an email, using the RFC 5322 format. The most important headers are:

  • subject: this is the title of your post.
  • summary: this is a one-line summary of your post.
  • keywords: a comma-separated list of keywords/tags.

Additionally, once the post is published a date header will be added.

Building the site

To build your site, simply run:

$ nb build

This will convert the Markdown files to HTML and/or Gemtext and build the site, with pages for tags and categories as well. Later, once posts have been announced to social networks, this command will also collect replies and store them locally as YAML files.

Publishing the site

Finally, you can publish your site with the command:

$ nb publish

This will upload the site using any configured publishers (like S3), and announce new posts to social networks.

nefelibata's People

Contributors

betodealmeida avatar dependabot[bot] avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.