mirror of
https://github.com/kevachat/webapp.git
synced 2025-01-08 22:07:53 +00:00
define anchors as links _fragment
This commit is contained in:
parent
a122711d6a
commit
6028768c2f
@ -8,7 +8,7 @@
|
|||||||
{% if namespace == form.namespace.value %}
|
{% if namespace == form.namespace.value %}
|
||||||
{{ namespace | keva_namespace_value }}
|
{{ namespace | keva_namespace_value }}
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ path('room_namespace', { namespace : namespace }) }}#latest">{{ namespace | keva_namespace_value }}</a>
|
<a href="{{ path('room_namespace', { namespace : namespace, _fragment : 'latest' }) }}">{{ namespace | keva_namespace_value }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</h2>
|
</h2>
|
||||||
<sup>
|
<sup>
|
||||||
|
@ -14,9 +14,9 @@
|
|||||||
</strong>
|
</strong>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
•
|
•
|
||||||
<a rel="nofollow" href="{{ path('room_namespace', { namespace : namespace }) }}#{{ post.id }}" title="{{ post.time | date('c') }}">{{ post.time | format_ago }}</a>
|
<a rel="nofollow" href="{{ path('room_namespace', { namespace : namespace, _fragment : post.id }) }}" title="{{ post.time | date('c') }}">{{ post.time | format_ago }}</a>
|
||||||
•
|
•
|
||||||
<a rel="nofollow" href="{{ path('room_namespace', { namespace : namespace, txid : post.id }) }}#{{ post.id }}">{{ 'reply' | trans }}</a>
|
<a rel="nofollow" href="{{ path('room_namespace', { namespace : namespace, txid : post.id, _fragment : post.id }) }}">{{ 'reply' | trans }}</a>
|
||||||
{% if post.pending %}
|
{% if post.pending %}
|
||||||
<span title="{{ 'pending in pool' | trans }}">
|
<span title="{{ 'pending in pool' | trans }}">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 16 16">
|
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 16 16">
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
<title>#{{ post.id }}</title>
|
<title>#{{ post.id }}</title>
|
||||||
<author>@{{ post.user }}</author>
|
<author>@{{ post.user }}</author>
|
||||||
<pubDate>{{ post.time | date('D, d M Y h:i:s O') }}</pubDate>
|
<pubDate>{{ post.time | date('D, d M Y h:i:s O') }}</pubDate>
|
||||||
<guid>{{ url('room_namespace', { namespace : request.get('namespace') }) }}#{{ post.id }}</guid>
|
<guid>{{ url('room_namespace', { namespace : request.get('namespace'), _fragment : post.id }) }}</guid>
|
||||||
<link>{{ url('room_namespace', { namespace : request.get('namespace') }) }}#{{ post.id }}</link>
|
<link>{{ url('room_namespace', { namespace : request.get('namespace'), _fragment : post.id }) }}</link>
|
||||||
<description>{{ post.message | striptags | markdown_to_html | striptags | trim }}</description>
|
<description>{{ post.message | striptags | markdown_to_html | striptags | trim }}</description>
|
||||||
</item>
|
</item>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<li>
|
<li>
|
||||||
<div>
|
<div>
|
||||||
<strong>
|
<strong>
|
||||||
<a href="{{ path('room_namespace', { namespace : room.namespace }) }}#latest">{{ room.namespace | keva_namespace_value }}</a>
|
<a href="{{ path('room_namespace', { namespace : room.namespace, _fragment : 'latest' }) }}">{{ room.namespace | keva_namespace_value }}</a>
|
||||||
</strong>
|
</strong>
|
||||||
{{ room.total }}
|
{{ room.total }}
|
||||||
<a href="{{ path('room_namespace', { namespace : room.namespace, feed : 'rss' }) }}" title="{{ 'RSS' | trans }}" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" fill="currentColor" viewBox="0 0 16 16">
|
<a href="{{ path('room_namespace', { namespace : room.namespace, feed : 'rss' }) }}" title="{{ 'RSS' | trans }}" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" fill="currentColor" viewBox="0 0 16 16">
|
||||||
|
Loading…
Reference in New Issue
Block a user