Skip to content

webpagine/pagine

Repository files navigation

Pagine logo

Pagine v2.4.3

Pagine is an high-performance website constructor that makes full use of multicore hardware.

Build jobs can be completed very fast.

Features

  • Parallel hierarchy processing and unit execution. Everything is executed in parallel from beginning to end.
  • Hierarchical metadata propagation which makes metadata management easy.
  • Manage templates and assets via Git. Every template can be distributed and used without modification.
  • In-template builtin functions
  • Interact with Pagine in templates.
  • Multi-stage workflow.

As server: update web content on file change.

Supported rich text formats:

Install

Binaries

Find the executable that matches your OS and architecture in releases.

Build from source

$ go install github.com/webpagine/pagine/v2/cmd/[email protected]

Tip

Install Pagine via Go mod is recommended for non-amd64 platforms. Choose Go toolchain for your platform here.

Usage

Usage of pagine:

  • -public string
    • Location of public directory. (default /tmp/$(basename $PWD).public)
  • -root string
    • Site root. (default $PWD)
  • -serve string
    • Specify the port to listen and serve as HTTP.

Generate

$ cd ~/web/my_site
$ pagine
Generation complete.

Run as HTTP server

$ cd ~/web/my_site
$ pagine --serve :12450

It automatically executes generation when file changes are detected by inotify.

Note

Incremental generation is not implemented yet.
Set the --public under /tmp is recommended to reduce hard disk writes.

Since v2.1.0, the server provides a WebSocket interface at /ws to provide event monitoring for the client, such as page updates.

Caution

Exposing your Pagine server to the public network might be risky! You should deploy your final pages via static page services.

Structure

Template

Template is a set of page frames (Go template file) and assets (e.g. SVGs, stylesheets and scripts).

Manifest of one template looks like:

manifest:
  canonical: "com.symboltics.pagine.genesis" # Canonical name
  patterns:
    - "/*html"                               # Matched files will be added as template file.

templates:
  - name: "page"        # Export as name `page`
    export: "page.html" # Export `page.html`

  - name: "post"        # Export as name `post`
    export: "post.html" # Export `post.html`

To the Go templates files syntax, see text/template.

Example: page.html

<html lang="{{ .lang }}">
<head>
    <title>{{ .title }}</title>
    <link rel="stylesheet" href="{{ api.Attr.templateBase }}/css/base.css"/>
</head>
<body>
{{ template "header.html" . }}
<main>{{ render.ByFileExtName .content }}</main>
</body>
{{ template "footer.html" . }}
</html>

Env

"Environment" is the configuration of the details of the entire process.

ignore: # Pattern matching. Matched files will not be **copied** to the public/destination.
  - "/.git*"

use: # Load and set alias for the template.
  genesis: "/templates/genesis"
  documentor: "/templates/documentor"

Installing templates via Git submodule is recommended. Such as:

$ git submodule add https://github.com/webpagine/genesis templates/genesis

Level

Each "level" contains its metadata. And a set of units to be executed.

For directories, metadata sets are stored in metadata.toml in the form of map, and units are stored in unit.toml

Each template has its alias that defined in env as the namespace.

Levels can override fields propagated from parents.

Example: /metadata.yaml

genesis:
  title: "Pagine"

  head:
    icon: "/favicon.ico"

    nav:
      items:
        - name: "Documentation"
          link: "/docs/"

Unit

Example: /unit.yaml

unit:
  - template: "genesis"      # Which template to use.
    template_key: "page"     # Which the key refers to.
    output: "/index.html"    # Where to save the result.
    define:
      title: "Pagine"        # Unit-specified metadata.
      content: "README.md"

  - template: "genesis"
    template_key: "page"
    output: "/404.html"
    define:
      title: "Page not found"
      content: "404.md"

Multi-stage Workflow

All paths are based on the directory where the workflow.yaml is located.

Workflow

Workflows are executed in parallel.

Example: workflow.yaml

stage:
  - job:
      - type: "tsc/v1"
        title: "Build TypeScript"
        path: "/script/"

Stage

Stages are executed in order. Each stage contains a set of jobs.

Job

Jobs are executed in parallel.

Job Builder

The Job Builder is one special-purpose template like embedded program. It accepts API and configuration information from the engine and outputs processed job information to the engine.

Environment variable PAGINE_JOB_BUILDER_ROOT has been used to specify the root location of external job builders.

Builder lookup order:

  1. PAGINE_JOB_BUILDER_ROOT from env.
  2. Builtin: /workflow/builtin in this repository.
API Type Description
job map[string]any Job field.
Field of job Type Description
title string Title show in log output
executable string Executable in $PATH
args []string Arguments

Builtin Job Builders

TypeScript compiler (tsc)

type: "tsc/v1"
title: "Build TypeScript"
path: "/script/"

Make sure tsc had been installed on target machine.

Builtin functions

Arithmetic

Func Params Result
add a, b: int int
sub a, b: int int
mul a, b: int int
div a, b: int int
mod a, b: int int

Slice

Func Params Result Description
makeSlice []any Make an empty slice.
Method of Slice Params Result Description
Len int Get length of slice.
Index i: int any Get element in slice.
Push e: ...any Push to the end of slice.
Slice start, end: int []any Get elements from start to end, excluding end

Map

Method of Map Params Result Description
Get key: string any Get element from map.
Set key: string, value: any Set element to map.
Has key: string bool Return true if the key exists.
Delete key: string Delete key from map.

Engine API

Func Params Description
api.Attr Get meta information in the form of map about units, hierarchy and templates provided by engine.
api.Apply templateName, templateKey: string, data: map[string]any Invoke a template.
api.ApplyFile apiVer, path: string, data: map[string]any Invoke single template file.
This It returns the root node of metadata of the template.
api.Attr. Description
isServing True if Pagine is running as server.
templateBase It tells the template where it has been stored.
unitBase Unit's level's base dir path.

Tip

api.Attr.isServing can be used to enable some debug code in templates such as page realtime update.

Path processing.

For more detail, check Go source file: structure/v1_path.go

Example: {{ path.Base .path }}

String processing

For more detail, check Go source file: structure/v1_strings.go

Example: {{ strings.HasSuffix .logo.src ".svg" }}

Content rendering

Path starts from where the unit is.

Func Args Description
render.FileByExtName path: string Query MIME type by file extension name then render.
render.FileByMimeType mimeType, path: string Render file content by given MIME type.
Format MIME Type File Extension Name
Asciidoc text/asciidoc adoc, asciidoc
Markdown text/markdown md, markdown

Deploy

Manually

$ pagine --public ../public

Upload ../public to your server.

Deploy to GitHub Pages via GitHub Actions (recommended)

GitHub Actions workflow file content: .github/workflows/pagine.yml

name: Deploy

on:
  push:
    branches:
      - master

permissions:
  contents: read
  pages: write
  id-token: write

concurrency:
  group: "pages"
  cancel-in-progress: false

defaults:
  run:
    shell: bash

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Install TypeScript Compiler
        run: sudo apt install node-typescript -y

      - name: Install Pagine
        run: go install github.com/webpagine/pagine/v2/cmd/[email protected]

      - name: Checkout
        uses: actions/checkout@v4
        with:
          submodules: recursive
          fetch-depth: 0

      - name: Setup Pages
        id: pages
        uses: actions/configure-pages@v4

      - name: Build with Pagine
        run: ~/go/bin/pagine --public ../public/

      - name: Upload artifact
        uses: actions/upload-pages-artifact@v3
        with:
          path: ../public/

      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v4

FAQ

Why another generator? Isn't Hugo enough?

Pagine is not Hugo, and is not aim to replace Hugo.

Pagine does not embed page configurations in Markdown file, they are separated and should be separated.

And Pagine does not focus on Markdown only, I hope to support various kinds of source.

Can I use Pagine for building complex web application?

Yes. It can help you get rid of repetitive work about static contents.

And templates can also increase productivity as long as Pagine well integrated with external tools via workflow.

Co-operate with external tools such as TypeScript compiler or npx?

It can be done via workflow.

What is the origin of the logo and name?

It is neither a browser engine, a layout engine nor a rendering engine.

Page Gen × Engine ⇒ Pagine. It has similar pronunciation to "pagen".

The logo is an opened book with a bookmark.

Rewrite it in other PL?

I expected somebody would ask.

It will not be taken unless it does bring obvious advantages.

Thus: NO. It is not planned currently.