diff options
author | Alexander Kabui | 2021-05-06 21:39:37 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-07 12:01:15 +0300 |
commit | 92246a53e63e51a9d54938a5c1a65553545853c2 (patch) | |
tree | fa8752d58c43b160a03cef73b1cd7793b4e76bed /wqflask | |
parent | 19771ba2c54b50313675c7a29ee8a53dcb0802ce (diff) | |
download | genenetwork2-92246a53e63e51a9d54938a5c1a65553545853c2.tar.gz |
modify blog list ui
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/blogs_list.html | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/wqflask/wqflask/templates/blogs_list.html b/wqflask/wqflask/templates/blogs_list.html index 93cb3d89..4e2bfb82 100644 --- a/wqflask/wqflask/templates/blogs_list.html +++ b/wqflask/wqflask/templates/blogs_list.html @@ -11,11 +11,8 @@ } .blog_year { font-weight: bold; - opacity: 0.8; - /*letter-spacing: 0.2em;*/ font-size: 48px; padding:12px 10px; - color:#0F75CD; } .blog_title { @@ -26,14 +23,10 @@ .blog_title a{ - text-decoration: none; - font-size:16px; - color:#333; - /*margin: 10px 15px;*/ - padding-left: 30px; - opacity: 0.8; - - /*font-weight: bold;*/ + font-size:1.3em; + padding-left: 10px; + letter-spacing: 0.07em; + text-decoration: underline; } </style> @@ -48,8 +41,16 @@ <div class="blog_year"><h3>{{year}}</h3></div> {%for blog in year_blogs%} <!-- <a href="#" class="blog_subtitle">{{blog['subtitle']}}</a> --> - <div class="blog_title"><a href="{{ url_for('blogs_blueprint.display_blog',blog_title = blog.subtitle)}}">{{blog['subtitle']}}</a> + <div> + <div class="blog_title"> + <ul> + <li> + <a href="{{ url_for('blogs_blueprint.display_blog',blog_path = blog.full_path)}}">{{blog['subtitle']}}</a> + </li> + </ul> + </div> + </div> {% endfor %} {%endfor%} |