Website update. There is now a community section.
This commit is contained in:
parent
33bb6dec37
commit
2fb50e55d9
28 changed files with 1441 additions and 33 deletions
23
flask_website/templates/community/twitter.html
Normal file
23
flask_website/templates/community/twitter.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{% extends "community/layout.html" %}
|
||||
{% from "_twitter.html" import tweet_box %}
|
||||
{% block head %}
|
||||
{{ super() }}
|
||||
{% endblock %}
|
||||
{% block body %}
|
||||
<h2>Twitter</h2>
|
||||
<p>
|
||||
Currently there is no dedicated Twitter account for updates
|
||||
regarding Flask, but here are some accounts that you might
|
||||
want to follow:
|
||||
<ul>
|
||||
<li><a href="http://twitter.com/mitsuhiko">@mitsuhiko</a> —
|
||||
development lead
|
||||
<li><a href="http://twitter.com/PocooProject">@PocooProject</a> —
|
||||
official Pocoo Project account
|
||||
</ul>
|
||||
<h3>Recent Tweets</h3>
|
||||
<p>
|
||||
Here some aggregated tweets from various people all over the planet
|
||||
mentioning Flask:
|
||||
{{ tweet_box(tweets, 15) }}
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue