aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/webapp/WEB-INF/views/partial
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2017-10-22 18:43:28 +0300
committerGravatar Vitaly Takmazov2017-10-22 18:43:28 +0300
commit1b78657973b9da7af32e7e9df8ea3e92a7928876 (patch)
treef4610e18da5632457c1411e0d6bc3d489ef815c5 /juick-www/src/main/webapp/WEB-INF/views/partial
parentd59a653e5393782a45d3af493149aa66c35c69a6 (diff)
www: drop @ and : from usernames
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF/views/partial')
-rw-r--r--juick-www/src/main/webapp/WEB-INF/views/partial/message.html2
-rw-r--r--juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/partial/message.html b/juick-www/src/main/webapp/WEB-INF/views/partial/message.html
index cb417c1e..045471f8 100644
--- a/juick-www/src/main/webapp/WEB-INF/views/partial/message.html
+++ b/juick-www/src/main/webapp/WEB-INF/views/partial/message.html
@@ -1,7 +1,7 @@
<article data-mid="{{ msg.mid }}" itemprop="blogPost" itemscope="" itemtype="http://schema.org/BlogPosting" itemref="org">
<header class="h">
<span itemprop="author" itemscope="" itemtype="http://schema.org/Person">
- @<a href="/{{ msg.user.name }}/" itemprop="url" rel="author"><span itemprop="name">{{ msg.user.name }}</span></a>:
+ <a href="/{{ msg.user.name }}/" itemprop="url" rel="author"><span itemprop="name">{{ msg.user.name }}</span></a>
</span>
<div class="msg-avatar"><a href="/{{ msg.user.name }}/">
<img src="//i.juick.com/a/{{ msg.user.uid }}.png" alt="{{ msg.user.name }}"/></a>
diff --git a/juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html b/juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html
index 30bbc44c..dc373b20 100644
--- a/juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html
+++ b/juick-www/src/main/webapp/WEB-INF/views/partial/thread_list.html
@@ -3,7 +3,7 @@
<div class="msg-cont">
<div class="msg-header">
{% if not msg.user.banned %}
- @<a href="/{{ msg.user.name }}/">{{ msg.user.name }}</a>:
+ <a href="/{{ msg.user.name }}/">{{ msg.user.name }}</a>
<div class="msg-avatar"><a href="/{{ msg.user.name }}/">
<img src="//i.juick.com/a/{{ msg.user.uid }}.png" alt="{{ msg.user.name }}"/></a>
</div>