Skip to content

Instantly share code, notes, and snippets.

@gwijayas
gwijayas / gist:5719519
Created June 6, 2013 05:31
2013-05-11_semoga-bisa.md
title
Test Post Pertama

Hello World

lorem ipsum dolar sit amet

the World, What a beautiful it is.

@gwijayas
gwijayas / gist:5719494
Created June 6, 2013 05:25
piecrust test default.twig
<html>
<body>
{{ content|raw }}
</body>
</html>
@gwijayas
gwijayas / gist:5719488
Created June 6, 2013 05:24
piecrust test _index.html
---
title: my Blog
format: none
layout: default.twig
---
{% for post in pagination.posts %}
<article>
<h2>{{ post.title }}</h2>
<p>{{ post.content|raw }}</p>
</article>
@gwijayas
gwijayas / gist:5719483
Created June 6, 2013 05:23
piecrust test config.yml
site:
title: 'My New Website'
description: 'A website recently generated with PieCrust.'
author: jaya
pretty_urls: true
markdown:
use_markdown_extra: true
<?php
use PieCrust\IPieCrust;
use PieCrust\Formatters\IFormatter;
class SundownFormatter implements IFormatter
{
protected $pieCrust;
@gwijayas
gwijayas / git2.php
Created December 9, 2012 04:15
php-git class and function list
<?php
// Start of git2 v.0.2.1
class Git2_Repository {
/**
* @param repository_path
*/
public function __construct ($repository_path) {}