Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
KLUGLUG
KL Event Management
Commits
67dd4a7d
Commit
67dd4a7d
authored
Apr 02, 2019
by
Phani Surya Teja Mahankali
Browse files
Upload New File
parent
d79309d3
Pipeline
#20237
passed with stage
in 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
flask/flaskblog/templates/home2.html
0 → 100644
View file @
67dd4a7d
{% extends "layout2.html" %}
{% block content %}
{% for post in posts %}
<article
class=
"media content-section"
>
<div
class=
"media-body"
>
<div
class=
"article-metadata"
>
<a
class=
"mr-2"
href=
"/{{post.author}}"
target=
_new
>
{{ post.author }}
</a>
<small
class=
"text-muted"
>
{{ post.date_posted }}
</small>
</div>
<h2><a
class=
"article-title"
href=
"/{{post.title}}"
target=
'_new'
>
{{ post.title }}
</a></h2>
<p
class=
"article-content"
>
{{ post.content }}
</p>
</div>
</article>
{% endfor %}
{% endblock content %}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment