fix(templates): Fix double-escaping of thread titles
This commit is contained in:
parent
1462810963
commit
9c2359c8c9
2 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
||||||
{% for thread in threads -%}
|
{% for thread in threads -%}
|
||||||
<a href="/thread/{{ thread.id }}" class="list-group-item list-group-item-action flex-column align-items-start {%- if thread.sticky %} bg-secondary text-white {% endif -%}">
|
<a href="/thread/{{ thread.id }}" class="list-group-item list-group-item-action flex-column align-items-start {%- if thread.sticky %} bg-secondary text-white {% endif -%}">
|
||||||
<div class="d-flex w-100 justify-content-between">
|
<div class="d-flex w-100 justify-content-between">
|
||||||
<h5 class="mb-1">{% if thread.sticky %}<span class="badge badge-light">Sticky</span> {% endif %}{{ thread.title }}</h5>
|
<h5 class="mb-1">{% if thread.sticky %}<span class="badge badge-light">Sticky</span> {% endif %}{{ thread.title | safe }}</h5>
|
||||||
<small class="{% if thread.sticky %}text-white{% else %}text-muted{% endif %}">{{ thread.posted }}</small>
|
<small class="{% if thread.sticky %}text-white{% else %}text-muted{% endif %}">{{ thread.posted }}</small>
|
||||||
</div>
|
</div>
|
||||||
<p class="mb-1">Created by {{ thread.author_name }}</p>
|
<p class="mb-1">Created by {{ thread.author_name }}</p>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
||||||
<!-- Custom CSS additions -->
|
<!-- Custom CSS additions -->
|
||||||
<style>img { max-width:100%; height:auto; }</style>
|
<style>img { max-width:100%; height:auto; }</style>
|
||||||
<title>Converse: {{ title }}</title>
|
<title>Converse: {{ title | safe }}</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="list-group d-flex flex-column">
|
<div class="list-group d-flex flex-column">
|
||||||
<div class="list-group-item d-flex">
|
<div class="list-group-item d-flex">
|
||||||
<h3>{{ title }}</h3>
|
<h3>{{ title | safe }}</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% for post in posts -%}
|
{% for post in posts -%}
|
||||||
|
|
Loading…
Reference in a new issue