news.tatooine.club/_includes/story.html
Nemo 41beeaec86 improve syndication markers and add links
- Syndication markers are now to the left
- Added links to Google Search
  and to self url.
2023-10-25 14:55:22 +05:30

19 lines
947 B
HTML

<details data-hash="{{include.story.id}}-{{include.story.date | date: '%s'}}" data-syndicated={{include.story.syndicated|to_integer}}>
<summary>
<h{{include.heading_level}}>
{% include_cached post-title.html trigger_warning=include.story.trigger_warning title=include.story.title %}
</h{{include.heading_level}}>
{% if include.story.content.downcase contains "developing story" %}<span title="Developing Story"></span>{%endif%}
</summary>
<div class="details-content">{{include.story.content}}
{% if include.story.media_link %}
<audio controls class="details-audio" crossorigin=anonymous preload=none src="{{include.story.media_link}}">
<a href="{{include.story.media_link}}">Download</a>
</audio>
{% endif %}
<p><a href="https://news.google.com/search?q={{include.story.title | uri_escape}}&hl=en-IN&gl=IN&ceid=IN%3Aen">Search on Google News</a> |
<a href="{{site.url}}/{{include.story.id}}">Link</a>
</div>
</details>