tonyfast / nsf-goali

A Testing Environment for Mini-Research Sites
tonyfast.com/nsf-goali
1 stars 3 forks source link

assigning post titles #9

Closed npaulson closed 10 years ago

npaulson commented 10 years ago

I'd like a little more control over the choice of the post title within the text of the blog.

For example the current post url is http://tonyfast.com/nsf-goali/2014/08/07/Noah-First-Post/ which automatically assigns the post title as "Noah First Post." I would like to be able to give a title "Noah's First Post."

Is there any way to pick my own title within markdown?

tonyfast commented 10 years ago

You can change the title using the title Global Jekyll Variable.

For the file XXXX-XX-XX-Noah-First-Post.html, the front matter would look like

---
layout: post
title: "Noah's First Post"
---

This will cause the title in the post list to be modified along with the title on the window bar of the webpage.

npaulson commented 10 years ago

Great, thanks a lot