zodiac/README.md

112 lines
3.0 KiB
Markdown
Raw Normal View History

2011-09-22 17:28:24 +02:00
# zodiac
## SYNOPSIS
ZODIAC is a static website generator powered by sh and awk.
## INSTALL
2011-09-22 18:51:59 +02:00
git clone git://github.com/nuex/zodiac.git
2011-09-22 17:28:24 +02:00
Edit the config.mk file to customize the install paths
sudo make install
## USAGE
zod projectdir targetdir
A typical Zodiac project will look something like this:
site/
index.md
index.meta
main.layout
global.meta
projects/
project-1.md
project-1.meta
project-2.md
project-2.meta
cv.md
cv.meta
stylesheets/
style.css
### Meta
`.meta` files contain a key / value pair per line. A key and its value must be separated by a ": ". A metafile looks like this:
this: that
title: Contact
author: Me
2011-10-04 23:45:03 +02:00
Each page can have its own meta file. The only requirement is that the meta file is in the same directory as the page, has the same name as the page and has the `.meta` file extension.
2011-09-22 17:28:24 +02:00
2011-09-22 17:42:14 +02:00
The optional `global.meta` file contains data that is available to all of your site's pages, like a site title.
2011-09-22 17:28:24 +02:00
Page metadata will always override global metadata of the same key.
2011-09-22 17:42:14 +02:00
### Templates
2011-09-22 17:28:24 +02:00
2011-10-04 23:45:03 +02:00
Templates come in two forms, page templates and layout templates. Metadata can be bound to templates by using the `{{key}}` notation in your pages and layout files.
2011-10-04 23:34:34 +02:00
Page templates can be either markdown files with an `.md` extension or plain HTML files with a `.html` extension.
The `main.layout` file wraps HTML content around a page template. A `main.layout` file could look something like this:
2011-09-22 17:42:14 +02:00
2011-09-22 17:28:24 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="/stylesheets/style.css" />
<title>{{page_title}}</title>
</head>
<body>
<header>
<h1><a href="/">{{site_title}}</a></h1>
</header>
<article>
{{{yield}}}
</article>
<footer>
<p>powered by static files, compiled by <a href="http://nu-ex.com/projects/zodiac">zodiac</a>.</p>
</footer>
</body>
</html>
2011-10-04 23:45:03 +02:00
`{{{yield}}}` is a special tag that renders the page content within the layout. `{{{yield}}}` can only be used in the `main.layout` file.
2011-09-22 17:44:49 +02:00
2011-09-22 17:28:24 +02:00
### Helpers
The `helpers.awk` file is an awk script that can make custom data available to your templates. You also have access to the page and global data. Here is a peak at the script included in the examples folder:
{ helpers = "yes" }
function load_helpers() {
# your custom data settings
data["page_title"] = page_title()
}
# your custom functions
function page_title( title) {
if (data["title"]) {
title = data["title"] " - "
}
title = title data["site_title"]
return title
}
Just be sure to set the data array in the load_helpers() function at the top of the script to make your custom data available to the template.
2011-09-22 17:42:14 +02:00
## FUTURE
2011-10-04 22:43:29 +02:00
- multiple filters support
2011-09-22 17:42:14 +02:00
- multiple layout support
- mustache support
- partials/snippets
## LICENSE
2011-09-22 17:28:24 +02:00
MIT