When setting up a new Mac this should be the bare minimal that is installed and working.
- Should be a managed admin or full admin.
| --- | |
| title: "Freeridical" | |
| date: 2019-10-25 | |
| images: | |
| - small: small-1.jpg | |
| large: large-1.jpg | |
| alt: First image | |
| - small: small-1.jpg |
| exiftool '-DateTimeOriginal+=0:0:0 1:0:0' |
| export PATH=/opt/local/bin:/opt/local/sbin:$PATH |
| var engine = new Liquid.Engine, | |
| es = require('event-stream'), | |
| frontmatter = require('gulp-front-matter'), | |
| fs = require('fs'), | |
| Liquid = require('liquid-node'), | |
| engine.registerFileSystem(new Liquid.LocalFileSystem('./_includes')) | |
| gulp.task('compile', function() { | |
| return gulp.src(['./page.html']) | |
| // only compile pages that have changed |
| --- | |
| title: I'm the page title | |
| language: Ruby | |
| --- | |
| <h1>I'm compiled without using {{ language | upcase }}</h1> |
| <!DOCTYPE html> | |
| <html lang="en-GB"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="x-ua-compatible" content="ie=edge"> | |
| <title> | |
| {% if page.title %} {{page.title | escape}} {% endif %} | |
| </title> | |
| </head> | |
| <body> |
| <header>I'm the header</header> |