diff options
author | Pjotr Prins | 2016-10-07 11:14:52 +0000 |
---|---|---|
committer | Pjotr Prins | 2016-10-07 11:14:52 +0000 |
commit | 2b1df54a13f0fa53c91ce23a4e9b7b9262983946 (patch) | |
tree | cfd2f21dd2e08a2167b365d44f517cf9799f732d /wqflask | |
parent | 3642a641c57621f2cbf87bed4657d58527d7b76f (diff) | |
download | genenetwork2-2b1df54a13f0fa53c91ce23a4e9b7b9262983946.tar.gz |
Twitter: added news list to search page
Diffstat (limited to 'wqflask')
-rwxr-xr-x | wqflask/wqflask/templates/index_page_orig.html | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/wqflask/wqflask/templates/index_page_orig.html b/wqflask/wqflask/templates/index_page_orig.html index bc811ef6..8844609f 100755 --- a/wqflask/wqflask/templates/index_page_orig.html +++ b/wqflask/wqflask/templates/index_page_orig.html @@ -1,5 +1,10 @@ {% extends "base.html" %} {% block title %}GeneNetwork{% endblock %} +{% block css %} +<style TYPE="text/css"> + p.interact { display: none; } +</style> +{% endblock %} {% block content %} <!-- Start of body --> @@ -166,8 +171,17 @@ </ul> </section> </div> + <div style="padding-left:120px" class="col-xs-4" style="width: 600px !important;"> - <!-- + <section id="news-section"> + <div class="page-header"> + <h1>News</h1> + </div> + <div id="tweets"></div> + <div align="right"> + <a href="https://twitter.com/GeneNetwork2">more news items...</a> + </div> + <!-- <section id="tour-info"> <div class="page-header"> <h1>Tour and more info</h1> @@ -194,6 +208,7 @@ </section> --> + </section> <section id="websites"> <div class="page-header"> @@ -222,7 +237,6 @@ <li><a href="http://gn2.genenetwork.org/">Memphis at the U of M</a></li> </ul> - <div id="tweets"></div> </section> @@ -294,9 +308,9 @@ "domId": 'tweets', "maxTweets": 5, "enableLinks": true, - "showUser": true, + "showUser": false, "showTime": true, - "showImages": true, + "showImages": false, "lang": 'en' }; twitterFetcher.fetch(configProfile); |