diff options
Diffstat (limited to 'design/templates/archives')
-rw-r--r-- | design/templates/archives/notes.html | 12 |
1 files changed, 6 insertions, 6 deletions
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> |