File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed
static/img/170609-static-sites-pelican Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,16 @@ requests with the file being requests - no dynamic data is populated on the
3636server during the response.
3737
3838
39- ## Pelican resources
39+ ### Pelican resources
40+ Static site generators like Pelican are a simple compared to
41+ [ web frameworks] ( /web-frameworks.html ) so most tutorials focus on
42+ creating simple sites that you can style yourself, as well as deploying
43+ to hosting services such as Amazon S3 and GitHub Pages.
44+
45+ * [ How to Create Your First Static Site with Pelican and Jinja2] ( /blog/generating-static-websites-pelican-jinja2-markdown.html )
46+ walks through installing, generating the boilerplate and customizing
47+ your first static site using Pelican.
48+
4049* [ The Long Road to Building a Static Blog with Pelican] ( http://www.notionsandnotes.org/tech/web-development/pelican-static-blog-setup.html )
4150 is a fantastic read that really gets into the details throughout the
4251 walkthrough.
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ inception in December 2012. You can view detailed changes via the
1515
1616## 2017
1717### June
18+ * New blog post on
19+ [ How to Create Your First Static Site with Pelican and Jinja2] ( /blog/generating-static-websites-pelican-jinja2-markdown.html ) .
1820* Updates to [ Twilio] ( /twilio.html ) and [ Pelican] ( /pelican.html ) pages
1921 with more resources.
2022
Original file line number Diff line number Diff line change 22
33{% block meta_header %}{% if article and article.meta %}
44< meta name ="description " content ="{{ article.meta }} ">
5+ < meta property ="og:url " content ="{{ SITEURL }}/blog/{{ article.slug }}.html " />
6+ < meta property ="og:title " content ="{{ article.title }} " />
7+ < meta property ="og:description " content ="{{ article.meta }} " />
8+ < meta property ="og:image " content ="{{ SITEURL }}{{ article.headerimage }} " />
59{% endif %}{% endblock %}
610
711{% block title %}{% if article %}{{ article.title }} - {% endif %}{% endblock %}
You can’t perform that action at this time.
0 commit comments