Skip to content

Commit 0136b2f

Browse files
committed
update changelog. add open graph sharing info
1 parent 931151a commit 0136b2f

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

content/pages/07-web-development/34-pelican.markdown

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,16 @@ requests with the file being requests - no dynamic data is populated on the
3636
server 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.

content/pages/12-meta/01-change-log.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

-34.5 KB
Loading

theme/templates/article.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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 %}

0 commit comments

Comments
 (0)