WTF is Sculpin

Sculpin is a static site generator written in PHP. And WTF is a static site generator? It's a tool for generating html files using raw data like TWIG and markdown. It's great for a website that has content that doesn’t need to be updated by multiple users on a regular basis, authentication, search, or any logic that requires server side communications. It can remove much of the complexity that comes with a CMS or hefty framework, as well as the need for server side technologies like PHP or a database server. A Static site generator is great for my personal blog or the local astronomy group news site, but not ideal for a large news organization that has much more dynamic content. Sculpin has the advantage of being written in a language I’m already familiar with; PHP. Some of the standout features of Sculpin include:

  • Writing content in markdown
  • TWIG templating
  • Syntax highlighting
  • Extremely fast
  • Secure (everything is client side)
  • Easily deployable (Can host static sites from github for free)

Sculpin Project Logo

Sculpin is perfect for creating a blog with a minimum amount of resistance for sharing code snippets and jotting down a few of opinions to share with the Interwebs from time to time. It's Especially useful for anyone already familiar with PHP and writing markdown.

How does one Sculpin?

Installing Sculpin

  1. Download the starter kit
1git clone https://github.com/sculpin/sculpin-blog-skeleton.git myblog
2cd myblog
3composer install

The starter kit is a skeleton build of Sculpin and is a great starting point for launching Sculpin as a blog.

  1. Run Sculpin
1vendor/sculpin/sculpin/bin/sculpin generate --watch --server

Navigate to http://localhost:8000. BAM! You now have a boiler plate Sculpin site.

What's Happening?

Magic! Okay maybe not magic. Sculpin comes with an executable bin, that we're running to parse all of the source objects (Twig templates, html, and markdown) files it can find to generate static html pages.

--watch tells Sculpin to watch for file changes in order to rewrite necessary HTML files. --server launches PHP's built in web server which allows you to see your work in progress. The fact that a working web server like apache isn't required makes it even easier to skip straight to writing content without any needless complicated setup.

Creating Content in Sculpin

Sculpin uses a markdown converter michelf/php-markdown for taking the blog content written in markdown and converting it to html. That means once the Twig templates and theme are in place, adding new content can be as simple as dropping a new markdown file into the code base. Luckily the starter kit comes with a working layout and theme, so we can get jump start to creating content.

By default Sculpin will look for blog post content or source objects in each file under the `/source' directory. All content posts can be written in markdown which Sculpin with convert into html.

 1 # Markdown Cheatsheet
 2 
 3 # This is an <h1>
 4 ## This is an <h2>
 5 ### This is an <h3>
 6 
 7 We can place special emphasis on some words by making them **bold** or *italics*
 8 
 9  Link
10  [More on Markdown](https://guides.github.com/features/mastering-markdown/)
11  
12 Lists
13 1. Step 1
14 1. ????
15 1. Step 3: Profit
16 
17 * Moon Knight
18 * Scarlet Witch
19 * Gambit
20 * Hope Summers

This is an <h1>

This is an <h2>

This is an <h3>

We can place special emphasis on some words by making them bold or italics

Link More on Markdown

Lists

  1. Step 1: Make numbered list
  2. Step 2: ????
  3. Step 3: Profit
  • Moon Knight
  • Scarlet Which
  • Gambit
  • Hope Summers

Syntax Highlighting

Another key feature that is a necessity when writing about code is syntax highlighting. Sculpin ships with highlightjs. No assembly required, batteries included!

 1```php
 2use Drupal\Core\DrupalKernel;
 3use Symfony\Component\HttpFoundation\Request;
 4
 5$autoloader = require_once 'autoload.php';
 6
 7$kernel = new DrupalKernel('prod', $autoloader);
 8
 9$request = Request::createFromGlobals();
10$response = $kernel->handle($request);
11$response->send();
12
13$kernel->terminate($request, $response);
14`'`
 1use Drupal\Core\DrupalKernel;
 2use Symfony\Component\HttpFoundation\Request;
 3
 4$autoloader = require_once 'autoload.php';
 5
 6$kernel = new DrupalKernel('prod', $autoloader);
 7
 8$request = Request::createFromGlobals();
 9$response = $kernel->handle($request);
10$response->send();
11
12$kernel->terminate($request, $response);

Theming

Sculpin's theming system can be heavily customized, but for the most part does a great job of getting out of your way. It uses TWIG for it's templating engine, and relies on creating layouts, which are mostly just wrappers around page content.

 1# source/_layouts/default.html
 2{% verbatim %}<!DOCTYPE html>
 3<html>
 4<head>
 5    {% include "head" %}
 6</head>
 7<body id="body">
 8    <div class="page-content">
 9        {% include "header" %}
10        <main class="content" role="main">
11            <div class="row">
12                <div class="col-md-6 col-md-offset-2">
13                    {% block content_wrapper %}{% block content %}{% endblock %}{% endblock %}
14                </div>
15                <div class="col-md-2">
16                    {% include "side_bar" %}
17                </div>
18            </div>
19        </main>
20        {% include "footer" %}
21    </div>
22    {% include "scripts" %}
23</body>
24</html>{% endverbatim %}

But that's a blog for another time.

YAML Formatter

Sculpin provides a method to add additional information about conten via a YAML formatter. YAML formatters are are a great way to provide meta information about the blog with in the markdown file. Information that can be used to do things like generate markup for something not easily supported in markdown, provide meta tag information, create taxonomy tagging of content, and more.

Markdown without YAML formatter.

1 # Normal Markdown

With YAML formatter

 1---
 2title: WTF is Sculpin
 3date: 2017-03-31
 4layout: default
 5tags:
 6    - wtf is
 7    - sculpin
 8featured_image: 
 9    image: jackson.png
10 ---
11 # Markdown with spandex and a cape

The YAML formatters are seperated by --- and written in YAML syntax. The YAML formatter will be parsed and injected into every page twig template using page.%KEY%. Nested structures are accessible by using a . to decend through the structure.

1we can access YAML directives with the TWIG template view {{ page.title}}
2 
3<img src="{{ page.featured_image.image }}"/>
4

Conclusion

Sculpin does exactly what it sets out to do, and does it well. It's a great tool for someone already familiar with PHP, looking for a way to quickly take TWIG templates, html, and markdown to create a static site that is easily deployable. While it can be extended by creating new bundles, it does not offer a lot in terms of managing dynamic content that requires server side interactions. It is a tool for a specific task, a task that it handles extremely well.

A huge thanks to Beau D. Simensen who created Sculpin, and being an all around awesome human being.

comments powered by Disqus