Pagine is an high-performance website constructor that makes full use of multicore hardware.
Build jobs can be completed very fast.
- 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:
- Asciidoc
- Markdown
- MathJax support provided in Documentor
Find the executable that matches your OS and architecture in releases.
$ go install github.com/webpagine/pagine/v2/cmd/pagine@v2.4.1
Tip
Install Pagine via Go mod is recommended for non-amd64 platforms. Choose Go toolchain for your platform here.
Usage of pagine:
-public
string- Location of public directory. (default
/tmp/$(basename $PWD).public
)
- Location of public directory. (default
-root
string- Site root. (default
$PWD
)
- Site root. (default
-serve
string- Specify the port to listen and serve as HTTP.
$ cd ~/web/my_site
$ pagine
Generation complete.
$ 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.
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>
"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
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/"
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"
All paths are based on the directory where the workflow.yaml
is located.
Workflows are executed in parallel.
Example: workflow.yaml
stage:
- job:
- type: "tsc/v1"
title: "Build TypeScript"
path: "/script/"
Stages are executed in order. Each stage contains a set of jobs.
Jobs are executed in parallel.
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:
PAGINE_JOB_BUILDER_ROOT
from env.- 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 |
type: "tsc/v1"
title: "Build TypeScript"
path: "/script/"
Make sure tsc
had been installed on target machine.
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 |
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 |
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. |
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.
For more detail, check Go source file: structure/v1_path.go
Example: {{ path.Base .path }}
For more detail, check Go source file: structure/v1_strings.go
Example: {{ strings.HasSuffix .logo.src ".svg" }}
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 |
$ pagine --public ../public
Upload ../public
to your server.
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/pagine@v2.4.1
- 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
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.
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.
It can be done via workflow.
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.
I expected somebody would ask.
It will not be taken unless it does bring obvious advantages.
Thus: NO. It is not planned currently.