├── .gitignore ├── LICENSE ├── README.md ├── examples ├── amber │ ├── posts │ │ ├── 002-meta-billet.md │ │ ├── 003-dependances.md │ │ ├── 004-npm-packages.md │ │ ├── 005-structurer-express.md │ │ ├── 006-dependency-injection.md │ │ ├── 007-implement.js.md │ │ ├── 008-backbone-computed-properties.md │ │ ├── 009-je-men-vais.md │ │ ├── 010-demenagement.md │ │ ├── foo.txt │ │ └── j-42-preparation.md │ ├── public │ │ ├── 002-meta-billet │ │ ├── 003-dependances │ │ ├── 004-npm-packages │ │ ├── 005-structurer-express │ │ ├── 006-dependency-injection │ │ ├── 007-implement-js │ │ ├── 008-backbone-computed-properties │ │ ├── 009-je-men-vais │ │ ├── 010-demenagement │ │ ├── css │ │ │ ├── fontello.css │ │ │ ├── main.css │ │ │ └── normalize.css │ │ ├── font │ │ │ ├── fontello.eot │ │ │ ├── fontello.svg │ │ │ ├── fontello.ttf │ │ │ └── fontello.woff │ │ ├── index.html │ │ ├── j-42-preparation │ │ └── rss │ └── templates │ │ ├── layout.amber │ │ └── post.amber └── native │ ├── posts │ ├── test.md │ ├── test2.md │ ├── test3.md │ └── test4.md │ ├── public │ ├── index.html │ ├── rss │ ├── test │ ├── test2 │ ├── test3 │ └── test4 │ └── templates │ ├── content.html │ └── post.html ├── gen.go ├── gen_test.go ├── main.go ├── rss.go ├── server.go ├── tpldata.go └── watch.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/README.md -------------------------------------------------------------------------------- /examples/amber/posts/002-meta-billet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/002-meta-billet.md -------------------------------------------------------------------------------- /examples/amber/posts/003-dependances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/003-dependances.md -------------------------------------------------------------------------------- /examples/amber/posts/004-npm-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/004-npm-packages.md -------------------------------------------------------------------------------- /examples/amber/posts/005-structurer-express.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/005-structurer-express.md -------------------------------------------------------------------------------- /examples/amber/posts/006-dependency-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/006-dependency-injection.md -------------------------------------------------------------------------------- /examples/amber/posts/007-implement.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/007-implement.js.md -------------------------------------------------------------------------------- /examples/amber/posts/008-backbone-computed-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/008-backbone-computed-properties.md -------------------------------------------------------------------------------- /examples/amber/posts/009-je-men-vais.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/009-je-men-vais.md -------------------------------------------------------------------------------- /examples/amber/posts/010-demenagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/010-demenagement.md -------------------------------------------------------------------------------- /examples/amber/posts/foo.txt: -------------------------------------------------------------------------------- 1 | test2! 2 | -------------------------------------------------------------------------------- /examples/amber/posts/j-42-preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/posts/j-42-preparation.md -------------------------------------------------------------------------------- /examples/amber/public/002-meta-billet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/002-meta-billet -------------------------------------------------------------------------------- /examples/amber/public/003-dependances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/003-dependances -------------------------------------------------------------------------------- /examples/amber/public/004-npm-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/004-npm-packages -------------------------------------------------------------------------------- /examples/amber/public/005-structurer-express: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/005-structurer-express -------------------------------------------------------------------------------- /examples/amber/public/006-dependency-injection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/006-dependency-injection -------------------------------------------------------------------------------- /examples/amber/public/007-implement-js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/007-implement-js -------------------------------------------------------------------------------- /examples/amber/public/008-backbone-computed-properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/008-backbone-computed-properties -------------------------------------------------------------------------------- /examples/amber/public/009-je-men-vais: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/009-je-men-vais -------------------------------------------------------------------------------- /examples/amber/public/010-demenagement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/010-demenagement -------------------------------------------------------------------------------- /examples/amber/public/css/fontello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/css/fontello.css -------------------------------------------------------------------------------- /examples/amber/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/css/main.css -------------------------------------------------------------------------------- /examples/amber/public/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/css/normalize.css -------------------------------------------------------------------------------- /examples/amber/public/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/font/fontello.eot -------------------------------------------------------------------------------- /examples/amber/public/font/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/font/fontello.svg -------------------------------------------------------------------------------- /examples/amber/public/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/font/fontello.ttf -------------------------------------------------------------------------------- /examples/amber/public/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/font/fontello.woff -------------------------------------------------------------------------------- /examples/amber/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/index.html -------------------------------------------------------------------------------- /examples/amber/public/j-42-preparation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/j-42-preparation -------------------------------------------------------------------------------- /examples/amber/public/rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/public/rss -------------------------------------------------------------------------------- /examples/amber/templates/layout.amber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/templates/layout.amber -------------------------------------------------------------------------------- /examples/amber/templates/post.amber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/amber/templates/post.amber -------------------------------------------------------------------------------- /examples/native/posts/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/posts/test.md -------------------------------------------------------------------------------- /examples/native/posts/test2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/posts/test2.md -------------------------------------------------------------------------------- /examples/native/posts/test3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/posts/test3.md -------------------------------------------------------------------------------- /examples/native/posts/test4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/posts/test4.md -------------------------------------------------------------------------------- /examples/native/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/public/index.html -------------------------------------------------------------------------------- /examples/native/public/rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/public/rss -------------------------------------------------------------------------------- /examples/native/public/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/public/test -------------------------------------------------------------------------------- /examples/native/public/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/public/test2 -------------------------------------------------------------------------------- /examples/native/public/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/public/test3 -------------------------------------------------------------------------------- /examples/native/public/test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/public/test4 -------------------------------------------------------------------------------- /examples/native/templates/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/templates/content.html -------------------------------------------------------------------------------- /examples/native/templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/examples/native/templates/post.html -------------------------------------------------------------------------------- /gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/gen.go -------------------------------------------------------------------------------- /gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/gen_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/main.go -------------------------------------------------------------------------------- /rss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/rss.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/server.go -------------------------------------------------------------------------------- /tpldata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/tpldata.go -------------------------------------------------------------------------------- /watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mna/trofaf/HEAD/watch.go --------------------------------------------------------------------------------