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