neofeed-theme

Twinkling star Neofeed Twinkling star

(っ◔◡◔)っ A personal timeline for the IndieWeb that can deploy to Neocities and GitHub Pages.

✨ Neofeed is a beginner-friendly starter site to learn to use Hugo and generate awesome static websites with continuous delivery. This enriched Hugo theme helps you create a plain HTML static website. You can deploy to Neocities and GitHub Pages with continuous deployment workflows out of the box!

🖌 Use CSS skins to switch it up and make it your own. Feeling brave? All the source code is at your fingertips. Go nuts! 🥜

Screenshots

With just CSS you can make your Neofeed look like anything you can imagine. Here are a few options for you to use, change, or extend right out of the box.

Neofeed with macintosh CSS skin Neofeed with minimal CSS skin Neofeed with cloudy-day CSS skin

The General Idea

Neofeed is an enriched Hugo theme. It gives you a fun starting point for creating your own personal feed on your own personal website! Customize as little or as much as you want and join the IndieWeb movement.

Starting from scratch? Check out the Neocities Tutorials.

You can edit your config.toml to customize basic website things, like your site title, your name, and some “about me” text. That’s all you need to deploy a great-looking Neofeed.

You can choose from pre-made CSS skins with automatic light and dark modes. Create your own to give your Neofeed personality, or share a CSS skin you made with a pull request to this repository!

Day-to-day, you can deploy your own personal feed updates to your Neocities website as well as GitHub Pages with two commands.

make entry
# ---
# title: 7c483a16-7931-43d7-9417-80124a06a4fa
# date: 2021-01-03T07:03:33 
# categories: ["note"]
# tags: 
# ---
# Hello world! Let's take back the timeline.
make ship

A special self-documenting Makefile makes this possible. Run make help in the repository root to see what you can do.

Git Started

Deploy without Hugo (stand alone site)

If you have Git and Make or GNU Make, Neofeed can be set up and deployed without installing any additional dependencies.

  1. Fork the repository.
  2. Get your Neocities API key by going to:

    https://neocities.org/settings/#api_key

  3. Set up your Neocities API key as a repository secret called NEOCITIES_API_TOKEN.

Then run:

git clone https://github.com/<your username>/neofeed-theme.git neofeed
cd neofeed
  1. Edit the config.toml file to name your site and choose options.
  2. Create your first entry and ship it!
make entry
# Write something clever in your $EDITOR
make ship

This will build your Neofeed and deploy it to Neocities using the included GitHub Actions workflow!

Your site can also be served by Github Pages. Make it so by configuring the publishing source to be your docs/ directory.

Use as a Hugo theme

Hugo is a static site generator that helps make it easy to create a website made with plain HTML. See the quickstart to create your site then follow these three steps.

1. Add this theme

Add this theme to your Hugo site by running this command from the site’s main folder:

cd <whatever you named your site folder>
git submodule add https://github.com/victoriadrake/neofeed-theme.git

2. Update your config file

Copy the exampleSite configuration file to your site’s main folder. Update the settings as you like – helpful comments are included.

Be sure to replace example.com with your own domain throughout the file.

3. Write and deploy

You can use the make entry command or manually add some content.

When you’re ready, you can deploy automatically with services like:

IndieWeb Features

Neofeed supports formats and protocols that encourage independent websites! To learn more about these, the community over at IndieWebCamp is a great place to ask questions.

Here are the features Neofeed currently supports:

Different Post Types

Your posts will be displayed slightly differently depending on the category you put in your front matter:

---
title: My Awesome Post
date: 2021-08-05T23:01:26 
categories: ["note"] # note, reply, anything else
reply: # If you choose "reply" above, the URL you're replying to
tags: 
---

Check out the example site for… examples! Just do make demo to see it.

Learn and Customize with Hugo

If you wish to edit the theme, create a CSS skin, or preview your timeline locally before deploying it, you’ll need the Hugo static site generator.

You can install the latest version by running make gethugo.

To see available Hugo commands, type hugo --help. Hugo’s searchable documentation is also excellent. I recommend familiarizing yourself with Hugo’s concepts using the Quickstart.

Edit or Create a CSS Skin

Look in static/skins/ to find the CSS files that give Neofeed personality. Choose one or create your own and configure your Neofeed to use it in config.toml:

[params]
skin = "macintosh"

Consider this your CSS playground! You can preview changes in your browser with live reload by running Hugo’s local server with hugo server. See the Hugo docs for more server options.

If you create a CSS skin you’d like to share, please consider sending a pull request to add it to this repository!

Totally Optional Cool Stuff

Neofeed has out-of-the-box support for these features.

Plausible

You can set up site analytics using Plausible, a service that respects user privacy while still letting you see your site traffic and sources.

Once you’ve set up your Plausible account, just turn it on in your config.toml. Neofeed will use your site’s URL automatically.

[params]
plausible = true

Web Monetization

Web Monetization is a proposed standard that can let you receive micropayments when visitors browse your site. You’ll need to set up a wallet that supports the Interledger Protocol (ILP).

Add your wallet’s payment pointer to your config.toml, for example:

[params]
paymentPointer = "$wallet.provider.com/myspecialid123"

Contributing

You are absolutely encouraged to contribute to this friendly open source project!

Values

As a project, Neofeed has these main goals:

  1. Make it easy for people to ship a fun and useful website.
  2. Make it easy to participate in Neocities to encourage the creation of personal static sites.
  3. Demonstrate excellent open source community practices and repository maintenance practices.

Any contribution that works towards these goals is welcome. See CONTRIBUTING.md for details.