2024-08-28 14:03:19 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
< html xmlns = "http://www.w3.org/1999/xhtml" xml:lang = "en" lang = "en" >
< head >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" / >
< meta name = "color-scheme" content = "dark light" / >
< title > Blasta / {{path}}< / title >
< link rel = "shortcut icon" href = "/graphic/blasta.svg" / >
< link rel = "icon" type = "image/svg+xml" href = "/graphic/blasta.svg" / >
< link rel = "stylesheet" type = "text/css" media = "screen"
href="/stylesheet/stylesheet.css" />
2024-09-04 16:31:52 +02:00
< script src = "/script/regulator.js" / >
2024-08-28 14:03:19 +02:00
< link rel = "alternate" type = "application/atom+xml"
title="Follow updates on /{% if jid %}jid/{% endif %}{{syndicate}}{% if param_tags %} for Tag: #{{param_tags}}{% endif %}{% if param_url %} for URL: {{param_url}}{% endif %}{% if param_hash %} for hash: {{param_hash}}{% endif %}"
href="/{% if jid %}jid/{% endif %}{{syndicate}}?mode=feed{% if param_tags %}& tags={{param_tags}}{% endif %}{% if param_url %}& url={{param_url}}{% endif %}{% if param_hash %}& hash={{param_hash}}{% endif %}" />
< link rel = "alternate" type = "application/atom+xml"
title="Subscribe to PubSub /{{syndicate}}{% if param_tags %} for Tag: #{{param_tags}}{% endif %}{% if param_url %} for URL: {{param_url}}{% endif %}{% if param_hash %} for hash: {{param_hash}}{% endif %}"
href="xmpp:{{pubsub_jid}}?pubsub;action=subscribe;node={{node_id}}" />
< / head >
< body >
< div id = "container" >
< div id = "header" class = "row" >
< h1 >
< img src = "/graphic/blasta.svg" / >
2024-08-28 17:13:58 +02:00
2024-09-04 16:31:52 +02:00
< a href = "/" >
Blasta
< / a >
/ {{path}}
2024-08-28 14:03:19 +02:00
< / h1 >
< dl id = "navigation" >
< dd >
2024-09-04 16:31:52 +02:00
< a href = "/" >
< img alt = "Main"
src="/graphic/blasta.svg"/>
< / a >
2024-08-28 14:03:19 +02:00
< / dd >
{% if jabber_id %}
< dd >
< a href = "/save" > Add< / a >
< / dd >
< dd >
< a href = "/jid" > Public< / a >
< / dd >
< dd >
< a href = "/private" > Private< / a >
< / dd >
< dd >
< a href = "/read" > Read< / a >
< / dd >
{% endif %}
< dd >
< a href = "/search{% if jid %}/jid/{{jid}}{% endif %}" > Search< / a >
< / dd >
< dd >
< a href = "/popular" > Popular< / a >
< / dd >
< dd >
< a href = "/recent" > Recent< / a >
< / dd >
< dd >
{% if jabber_id %}
< a href = "/disconnect" > Disconnect< / a >
{% else %}
< a href = "/connect" > Connect< / a >
{% endif %}
< / dd >
< / dl >
< / div >
< div id = "main" class = "row" >
< div id = "content" >
2024-08-28 18:01:08 +02:00
< h2 >
< img alt = "💡" src = "/graphic/xmpp.svg" width = "18" height = "18" / >
PubSub bookmarks
< / h2 >
2024-08-28 14:03:19 +02:00
{% if pager %}
{% if page_next or page_prev %}
< div id = "navigate-top" >
{% if page_prev %}
«
< a href = "?page={{page_prev}}{% if param_tags %}&tags={{param_tags}}{% endif %}{% if param_query %}&q={{param_query}}{% endif %}" >
< b > retract< / b > < / a >
{% else %}
< span class = "inactive" > « retract< / span >
{% endif %}
or
{% if page_next %}
< a href = "?page={{page_next}}{% if param_tags %}&tags={{param_tags}}{% endif %}{% if param_query %}&q={{param_query}}{% endif %}" >
< b > proceed< / b > < / a >
»
{% else %}
< span class = "inactive" > proceed »< / span >
{% endif %}
< / div >
{% endif %}
{% endif %}
< p > » {{message}}< / p >
< h3 > {{description}}< / h3 >
{% if entries %}
< dl id = "posts" >
{% for entry in entries %}
< dd >
< article >
< h4 >
< a class = "title"
href="{{entry['link']}}">
{{entry['title']}}< / a >
< / h4 >
<!-- TODO Edit to be possible if entry is present -->
<!-- {% if jabber_id and entry['present'] %}{% endif %} -->
{% if jabber_id %}
{% if restore %}
< a href = "{{link_save}}" > restore< / a >
{% elif delete %}
< a href = "/url/{{entry['url_hash']}}/delete"
id="confirm">confirm deletion< / a >
{% elif jabber_id == jid or exist or path in ('private', 'read') %}
< a href = "/url/{{entry['url_hash']}}/edit" >
edit< / a >
/
< a href = "/url/{{entry['url_hash']}}/confirm" >
delete< / a >
{% else %}
< a href = "/url/{{entry['url_hash']}}/edit" >
add< / a >
{% endif %}
{% endif %}
< p class = "summary" > {{entry['summary']}}< / p >
< div class = "details" >
{% if entry['tags'] | length > 0 %}
to
{% for tag in entry['tags'] %}
< a href = "{% if jid %}/jid/{{jid}}{% elif path in ('query', 'url') %}/{% endif %}?tags={{tag}}" >
{{tag}}
< / a >
{% endfor %}
{% endif %}
at
< span >
{{entry['published_mod']}}
< / span >
< / div >
< / article >
< / dd >
{% endfor %}
< / dl >
{% endif %}
< br / >
< hr / >
{% if people %}
< h4 >
This resource is shared amongst {{entries[0]['instances']}} people
< / h4 >
< p >
< dl id = "people" >
{% for jid in people %}
< dt class = "h-entry" >
< dt >
< h5 >
by < a class = "p-author" href = "/jid/{{jid}}" > {{jid}}< / a >
< / h5 >
< / dt >
< dd >
to
{% if people[jid] | length > 0 %}
{% for tag in people[jid] %}
< a class = "p-category"
href="{% if jid %}/jid/{{jid}}{% elif path in ('query', 'url') %}/{% endif %}?tags={{tag}}">
{{tag}}
< / a >
{% endfor %}
{% endif %}
< / dd >
< / dt >
{% endfor %}
< / dl >
< / p >
{% endif %}
< / div >
< div id = "related-tags" >
< h3 > Your tags< / h3 >
< dl >
{% for tag in tags %}
< dd >
< a href = "{% if jid %}/jid/{{jid}}{% elif path in ('query', 'url') %}/{% endif %}?tags={{tag}}" >
{{tag}}
< / a >
{% if tags[tag] %}
({{tags[tag]}})
{% endif %}
< / dd >
{% endfor %}
< dd >
»
< a href = "/tag/{% if jid %}{{jid}}{% endif %}" > see more tags< / a >
< / dd >
< / dl >
< / div >
< / div >
{% if pager %}
{% if page_next or page_prev %}
< div id = "navigate-bottom" class = "row" >
{% if page_prev %}
« < a href = "?page={{page_prev}}{% if param_tags %}&tags={{param_tags}}{% endif %}{% if param_query %}&q={{param_query}}{% endif %}" > < b > retract< / b > < / a >
{% else %}
< span class = "inactive" > « retract< / span >
{% endif %}
or
{% if page_next %}
< a href = "?page={{page_next}}{% if param_tags %}&tags={{param_tags}}{% endif %}{% if param_query %}&q={{param_query}}{% endif %}" > < b > proceed< / b > < / a > »
{% else %}
< span class = "inactive" > proceed »< / span >
{% endif %}
< / div >
{% endif %}
{% endif %}
< div id = "subscribe" class = "row" >
< p >
< img alt = "💡" src = "/graphic/xmpp.svg" width = "16" height = "16" / >
< a href = "xmpp:{{pubsub_jid}}?pubsub;action=subscribe;node={{node_id}}" >
PubSub
< / a >
and
< img alt = "⚛" class = "enlarge" src = "/graphic/syndicate.svg" width = "16" height = "16" / >
< a href = "/{% if jid %}jid/{% endif %}{{syndicate}}?mode=feed{% if param_tags %}&tags={{param_tags}}{% endif %}{% if param_url %}&url={{param_url}}{% endif %}{% if param_hash %}&hash={{param_hash}}{% endif %}" >
RSS
<!-- img src="/graphic/atom.svg" width="36" height="14" alt="Atom"/ -->
< / a >
syndication feeds for this page are available.
< / p >
< / div >
< div id = "footer" class = "row" >
< dl >
< dd >
< img src = "/graphic/blasta.svg" alt = "logo" / >
< a href = "/" > blasta< / a >
< / dd >
< dd >
< a href = "/help/about" > about< / a >
< / dd >
< dd >
< a href = "/help/about/xmpp" > xmpp< / a >
< / dd >
< dd >
< a href = "/help/about/xmpp/pubsub" > pubsub< / a >
< / dd >
< dd >
< a href = "{{journal}}" > journal< / a >
< / dd >
< dd >
< a href = "/help" > help< / a >
< / dd >
< dd >
< a href = "/help/policy" > policy< / a >
< / dd >
< dd >
< a href = "/help/feeds" > rss< / a >
< / dd >
< dd >
< a href = "/contact" > contact< / a >
< / dd >
< / dl >
< / div >
< / div >
< / body >
< / html >