FIX: Compute topic title correctly (#29)
Was using `unicode_title` but not all topics return a unicode_title attribute. So need to instead do this.
This commit is contained in:
parent
68a7243a66
commit
b13abb992c
|
@ -5,7 +5,7 @@
|
||||||
}}
|
}}
|
||||||
|
|
||||||
<div class="topic-content">
|
<div class="topic-content">
|
||||||
<h1>{{topic.unicode_title}}</h1>
|
<h1>{{{topic.fancyTitle}}}</h1>
|
||||||
{{mount-widget
|
{{mount-widget
|
||||||
widget="post"
|
widget="post"
|
||||||
model=model
|
model=model
|
||||||
|
|
Loading…
Reference in New Issue