mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
Fix website URL encoding in certain links
This commit is contained in:
parent
44f3ad27ec
commit
13417b26e7
2 changed files with 4 additions and 4 deletions
|
|
@ -5,8 +5,8 @@
|
|||
<link rel="stylesheet" href="/article.css">
|
||||
<meta property="og:title" content="{{ page.title }}.">
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:image" content="{{ page.extra.banner }}">
|
||||
<meta property="og:url" content="{{ current_url }}">
|
||||
<meta property="og:image" content="{{ page.extra.banner | safe }}">
|
||||
<meta property="og:url" content="{{ current_url | safe }}">
|
||||
{% endblock head %}
|
||||
|
||||
{% block content %}
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
<div class="details">
|
||||
<h2 class="headline">{{ page.title }}.</h2>
|
||||
<span class="publication">By {{ page.extra.author }}. {{ page.date | date(format="%B %d, %Y", timezone="America/Los_Angeles") }}.</span>
|
||||
<img class="banner" src="{{ page.extra.banner }}" />
|
||||
<img class="banner" src="{{ page.extra.banner | safe }}" />
|
||||
</div>
|
||||
<hr />
|
||||
<article>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
{% for page in section.pages %}
|
||||
<article>
|
||||
<div class="banner">
|
||||
<a href="{{ page.permalink | safe }}"><img src="{{ page.extra.banner }}" /></a>
|
||||
<a href="{{ page.permalink | safe }}"><img src="{{ page.extra.banner | safe }}" /></a>
|
||||
</div>
|
||||
<div class="details">
|
||||
<div class="headline">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue