Overview
SHA1: | 3881a5300de51d1cf6bac49fe0114c7123a14164 |
---|---|
Date: | 2011-11-22 23:53:08 |
User: | spiffy |
Comment: | Moved the 'mark feed read' button back below the feed title |
Timelines: | family | ancestors | feature/pretty |
Downloads: | Tarball | ZIP archive |
Other Links: | files | file ages | folders | manifest |
Tags And Properties
- branch=feature/pretty inherited from [e8b2e22e32]
- sym-feature/pretty inherited from [e8b2e22e32]
Context
2011-11-22
| ||
23:54 | [ecb326adfb] Made the site a ton prettier (user: spiffy, tags: develop, v0.3) | |
23:53 | [3881a5300d] Leaf: Moved the 'mark feed read' button back below the feed title (user: spiffy, tags: feature/pretty) | |
23:16 | [07a2f861bb] [9678271609e046a71f06dd091c7ae666716cc670] Added a Google Analytics tracking code (user: spiffy, tags: develop) | |
22:50 | [21cebdfb51] Set the page title for the stories list page (user: spiffy, tags: feature/pretty) | |
Changes
Modified applications/mobileblur/static/css/base.css from [bdcac81a66] to [86604445a8].
520 520 color: white; 521 521 } 522 522 header > h1 > a { 523 523 text-decoration: none; 524 524 color: white; 525 525 font-weight: bold; 526 526 } 527 + 528 +header > h2 { 529 +/* border-top: 1px solid white;*/ 530 +} 527 531 528 532 #story-list { 529 533 } 530 534 531 535 #story-list > .story > a, .feed > a { 532 536 text-decoration: none; 533 537 font-weight: bold;
Modified applications/mobileblur/views/feeds/view.html from [4fc82f4915] to [a3c96a9b2b].
1 1 {{extend 'layout.html'}} 2 2 3 3 {{ block header_bonus }} 4 - <h2 style="float: left">{{= feed["feed_title"] }}</h2> 4 + <h2>{{= feed["feed_title"] }}</h2> 5 5 <a href="{{= URL("mark_read", args=[feed["id"]]) }}" class="button">Mark feed as read</a> 6 6 {{ end }} 7 7 8 8 <section id="story-list"> 9 9 {{ 10 10 import time 11 11 s = time.time()
Modified applications/mobileblur/views/layout.html from [431c1d6f9e] to [a03560f838].
89 89 <!--[if lt IE 7 ]> 90 90 <script src="{{=URL('static','js/dd_belatedpng.js')}}"></script> 91 91 <script> DD_belatedPNG.fix('img, .png_bg'); //fix any <img> or .png_bg background-images </script> 92 92 <![endif]--> 93 93 94 94 <!-- asynchronous google analytics: mathiasbynens.be/notes/async-analytics-snippet 95 95 change the UA-XXXXX-X to be your site's ID --> 96 - <!-- 97 96 <script> 98 - var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']]; 97 + var _gaq = [['_setAccount', 'UA-27222314-1'], ['_trackPageview']]; 99 98 (function(d, t) { 100 99 var g = d.createElement(t), 101 100 s = d.getElementsByTagName(t)[0]; 102 101 g.async = true; 103 102 g.src = '//www.google-analytics.com/ga.js'; 104 103 s.parentNode.insertBefore(g, s); 105 104 })(document, 'script'); 106 105 </script> 107 - --> 108 106 </body> 109 107 </html>