FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
fullstackpython.com/theme/templates/article.html at master · optionalg/fullstackpython.com · GitHub
optionalg
/
fullstackpython.com
Public
forked from
mattmakai/fullstackpython.com
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
fullstackpython.com
/
theme
/
templates
/
article.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
59 lines (52 loc) · 1.86 KB
Breadcrumbs
fullstackpython.com
/
theme
/
templates
/
article.html
Copy path
File metadata and controls
59 lines (52 loc) · 1.86 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{% extends "base.html" %}
{% block meta_header %}{% if article and article.meta %}
<
meta
name
="
description
"
content
="
{{ article.meta }}
"
>
<
meta
name
="
twitter:card
"
content
="
summary
"
/>
<
meta
name
="
twitter:title
"
content
="
{{ article.title }}
"
/>
<
meta
name
="
twitter:image
"
content
="
https://www.fullstackpython.com{{ article.headerimage }}
"
/>
<
meta
name
="
twitter:site
"
content
="
@fullstackpython
"
/>
<
meta
name
="
twitter:creator
"
content
="
@mattmakai
"
/>
<
meta
property
="
og:url
"
content
="
{{ SITEURL }}/blog/{{ article.slug }}.html
"
/>
<
meta
property
="
og:title
"
content
="
{{ article.title }}
"
/>
<
meta
property
="
og:description
"
content
="
{{ article.meta }} Nice post by @fullstackpython.
"
/>
<
meta
property
="
og:image
"
content
="
{{ SITEURL }}{{ article.headerimage }}
"
/>
{% endif %}{% endblock %}
{% block title %}{% if article %}{{ article.title }} - {% endif %}{% endblock %}
{% block css %}
{% include "css/article.html" %}
{% endblock %}
{% block banner %}
{% include "banner.html" %}
{% endblock %}
{% block content %}
{% if article %}
<
div
class
="
row
"
>
<
div
class
="
col-md-12
"
>
<
h1
style
="
font-size: 36px;
"
>
{{ article.title }}
</
h1
>
<
div
style
="
font-size:12px;color:#666;margin:0 0 10px
"
>
{% if article.modified != article.date %}
Post updated by
<
a
href
="
/about-author.html
"
>
Matt Makai
</
a
>
on
{{ article.modified.strftime('%B %d, %Y') }}. Originally posted
on {{ article.date.strftime('%B %d, %Y') }}.
{% else %}
Posted by
<
a
href
="
/about-author.html
"
>
Matt Makai
</
a
>
on
{{ article.date.strftime('%B %d, %Y') }}.
{% endif %}
</
div
>
</
div
>
</
div
>
<
div
class
="
row
"
>
<
div
class
="
col-md-9
"
>
{{ article.content }}
<
hr
>
{% include "email-for-book.html" %}
{% endif %}
</
div
>
<
div
class
="
col-md-3
"
>
{% include "article-sidebar.html" %}
{% include "article-sponsor.html" %}
</
div
>
</
div
>
{% endblock %}
{% block lower_banner %}
{% endblock %}
Back
|
FazBrowse Home
|
New Git URL