Browse Source

replace some entities w/ their UTF-8 chars for easier reading..

not all are replaced as they could be confused for regular chars
(like x for times and - for non-breaking hyphen), so those will not
be changed..
main
John-Mark Gurney 3 years ago
parent
commit
2b36c9dc6d
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      layout/base.j2
  2. +1
    -1
      layout/blog.j2
  3. +1
    -1
      layout/frontpage.j2

+ 1
- 1
layout/base.j2 View File

@@ -57,7 +57,7 @@
<!-- from: https://www.w3schools.com/w3css/w3css_sidebar.asp -->
<div class="w3-top">
<div class="w3-bar w3-lightgrey">
<button class="w3-bar-item w3-button w3-xlarge w3-right" onclick="w3_open()">&#9776;</button>
<button class="w3-bar-item w3-button w3-xlarge w3-right" onclick="w3_open()"></button>
</div>
</div>
<div class="w3-sidebar w3-animate-right w3-bar-block w3-collapse" id="mySidebar">


+ 1
- 1
layout/blog.j2 View File

@@ -54,4 +54,4 @@

{%- endblock %}

{% block copyright -%}Copyright &copy; {{ resource.meta.created|date_format("%Y") }} John-Mark Gurney{%- endblock %}
{% block copyright -%}Copyright © {{ resource.meta.created|date_format("%Y") }} John-Mark Gurney{%- endblock %}

+ 1
- 1
layout/frontpage.j2 View File

@@ -32,5 +32,5 @@
{% endblock %}

{% block copyright %}
Copyright &copy; {{ time_now|date_format("%Y") }} John-Mark Gurney
Copyright © {{ time_now|date_format("%Y") }} John-Mark Gurney
{% endblock %}

Loading…
Cancel
Save