Skip to content

Free CSS “Magazine” template, adapted for the Gozer static generator.

Notifications You must be signed in to change notification settings

htejera/magazine-gozer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

“Magazine” HTML template for Gozer

Free CSS “Magazine” template, adapted for the Gozer static generator.

This template is a basic version of the original. Pagination and support for tags is not included.

Live preview: https://magazine-gozer.surge.sh

Template screenshot

Template screenshot menu

Find more themes for Gozer at Jamstackthemes

Installing and building

Gozer is a powerful static site generator written in Go. Follow these instructions to install Gozer and build your project.

Prerequisites

Before installing Gozer, make sure you have Go installed. You need Go version 1.11 or later to use Gozer.

Installing Gozer

To install Gozer, open a terminal and execute the following command:

go install git.sr.ht/~dvko/gozer@latest

Project Structure

After initializing your project, you'll find the following structure:

  • content/: This directory contains your site's content (Markdown files).
  • public/: Static files, such as: CSS, JS, etc.

Building

To build your site, navigate to your project's root directory in the terminal and run:

gozer build

This command processes your content files and generates your site in the public/ directory.

Serving the site locally

If you want to preview your site locally, you can serve it using Gozer by running:

gozer serve

This will start a local web server. By default, you can access your site by going to http://localhost:8080 in your web browser.

For more information and advanced usage, refer to the official Gozer documentation.