diff options
author | luxagraf <sng@luxagraf.net> | 2014-10-24 20:27:40 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-10-24 20:27:40 -0400 |
commit | 7f497a6e99fff99f45bbd68466d7e0ae1bee0539 (patch) | |
tree | d306625a2a2ccbda954805ed73670ec6b42ffb4d /design | |
parent | f0c735798aa8b54867c59ca48a11e32ef4adca5f (diff) |
rewrote notes a bit to allow for longer notes and changed action tags to
indie-action
Diffstat (limited to 'design')
-rw-r--r-- | design/sass/_notes.scss | 7 | ||||
-rw-r--r-- | design/templates/archives/notes.html | 12 |
2 files changed, 13 insertions, 6 deletions
diff --git a/design/sass/_notes.scss b/design/sass/_notes.scss index 8add4e5..cdfdb42 100644 --- a/design/sass/_notes.scss +++ b/design/sass/_notes.scss @@ -31,6 +31,13 @@ } } } +.note--title { + text-align: left; + font-weight: 400; + font-size: 1.5em; + letter-spacing: 0px; + font-style: italic; +} .note--date { @include smcaps; @include fontsize(11); diff --git a/design/templates/archives/notes.html b/design/templates/archives/notes.html index c6c6e34..4ee5269 100644 --- a/design/templates/archives/notes.html +++ b/design/templates/archives/notes.html @@ -14,7 +14,7 @@ <h1>Field Notes</h1> {% for object in object_list %} <article class="h-entry"> - <h2 class="p-name note--title hide">{{object.title|safe|amp|smartypants}}</h2> + <h2 class="p-name note--title">{{object.title|safe|amp|smartypants}}</h2> <div class="e-content"> {{object.render|safe|amp|smartypants|urlizetrunc:45 }} </div> @@ -36,17 +36,17 @@ <ul class="note--actions"> <li><a rel="syndication" class="u-syndication" href="https://twitter.com/luxagraf/status/{{object.twitter_id}}">View on Twitter</a></li> <li> - <action do="reply" with="{{SITE_URL}}{{object.get_absolute_url}}"><a href="https://twitter.com/intent/tweet?in_reply_to={{object.twitter_id}}">Reply</a></action> + <indie-action do="reply" with="{{SITE_URL}}{{object.get_absolute_url}}"><a href="https://twitter.com/intent/tweet?in_reply_to={{object.twitter_id}}">Reply</a></indie-action> </li> <li> - <action do="post" with="{{SITE_URL}}{{object.get_absolute_url}}"> + <indie-action do="post" with="{{SITE_URL}}{{object.get_absolute_url}}"> <a href="https://twitter.com/intent/retweet?tweet_id={{object.twitter_id}}">Retweet</a> - </action> + </indie-action> </li> <li> - <action do="bookmark" with="{{SITE_URL}}{{object.get_absolute_url}}"> + <indie-action do="bookmark" with="{{SITE_URL}}{{object.get_absolute_url}}"> <a href="https://twitter.com/intent/favorite?tweet_id={{object.twitter_id}}">Favourite</a> - </action> + </indie-action> </li> </ul>{% endif %} </footer> |