# mkdir -p source
# vi source/index.md
!
---
layout: default
title: My first Sculpin source
---
!
# Hello World!
!
Yay! You did it. You created your first
[Sculpin](https://sculpin.io) page!
Slide 66
Slide 66 text
sculpin generate --watch --server
Slide 67
Slide 67 text
Detected new or updated files
Generating: 100% (120 sources / 0.01 seconds)
Converting: 100% (120 sources / 0.32 seconds)
Formatting: 100% (120 sources / 0.05 seconds)
!
...
!
Processing completed in 0.81 seconds
Starting Sculpin server for the dev environment with debug true
Development server is running at http://localhost:8000
Quit the server with CONTROL-C.
Slide 68
Slide 68 text
Detected new or updated files
Generating: 100% (120 sources / 0.01 seconds)
Converting: 100% (120 sources / 0.32 seconds)
Formatting: 100% (120 sources / 0.05 seconds)
!
...
!
Processing completed in 0.81 seconds
Starting Sculpin server for the dev environment with debug true
Development server is running at http://localhost:8000
Quit the server with CONTROL-C.
Slide 69
Slide 69 text
No content
Slide 70
Slide 70 text
Where can I see how
to do [anything]?
Slide 71
Slide 71 text
Sculpin docs suck. :(
Slide 72
Slide 72 text
people are trying to help make
them better
@emmajanehw
{% set now = "now"|date_modify("-2 day")|date("U") %}
!
{% set found = false %}
{% for talk in data.talks|reverse if talk.date >= now %}
{% if loop.first %}
Upcoming Talks
Where I will be speaking in the future.
{% set found = true %}
{% endif %}
{% include "talks_listing_item" %}
Slide 93
Slide 93 text
{% set found = false %}
{% for talk in data.talks if talk.date < now %}
{% if loop.first %}
Past Talks
Where I have spoken in the past.
{% set found = true %}
{% endif %}
{% include "talks_listing_item" %}
!
Slide 94
Slide 94 text
https://github.com/simensen/
beau.io/
Slide 95
Slide 95 text
authors
Slide 96
Slide 96 text
No content
Slide 97
Slide 97 text
http://dev-human.com/
@erikaheidi
Slide 98
Slide 98 text
leverages site metadata to build
and maintain author data
@erikaheidi
Slide 99
Slide 99 text
authors:
erikaheidi:
name: Erika Heidi
url: http://erikaheidi.com
avatar: https://pbs.twimg.com/profile_images/45104284520638
twitter: http://twitter.com/erikaheidi
googleplus: https://plus.google.com/102734777555057691872
bio: independent web developer && open source enthusiast. s
cordoval:
name: Luis Cordova
url: http://pilotci.com
avatar: https://pbs.twimg.com/profile_images/45432988585964
@erikaheidi
---
layout: default
title: All about metadata
---
!
# This is a markdown file with YAML frontmatter
Slide 139
Slide 139 text
---
layout: default
title: All about metadata
---
!
# This is a markdown file with YAML frontmatter
!
!
// Sculpin transforms this source file into something that
// looks more like this...
!
!
{% extends "default" %}
{% block content %}
!
# This is a markdown file with YAML frontmatter
{% endblock %}
Slide 140
Slide 140 text
---
layout: default
title: All about metadata
---
!
# This is a markdown file with YAML frontmatter
Slide 141
Slide 141 text
---
layout: default
title: All about metadata
---
!
# This is a markdown file with YAML frontmatter
!
!
{{ page.title }}
{% block content %}Fallback content{% endblock %}
Slide 142
Slide 142 text
---
layout: default
title: All about metadata
---
!
# This is a markdown file with YAML frontmatter
!
!
{{ page.title }}
{% block content %}Fallback content{% endblock %}
!
!
All about metadata