Skip to content

Commit

Permalink
Use /static URLs directly, closes #85.
Browse files Browse the repository at this point in the history
  • Loading branch information
supakeen committed Jun 8, 2020
1 parent 199b582 commit c3986b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ More bugfixes to some things that were either introduced in 1.1.1 or were
lower priority.

* Update our dependencies.

* Use the /static URLs directly for logo/favicon (#85)

v1.1.1 (20200602)
*****************
Expand Down
4 changes: 2 additions & 2 deletions pinnwand/template/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<head>
<title>{{ pagetitle }}</title>
<link rel="stylesheet" href="{{ static_url('pinnwand.css') }}" type="text/css">
<link rel="shortcut icon" href="{{ static_url('favicon.png') }}">
<link rel="shortcut icon" href="/static/favicon.png">
<script type="text/javascript" src="{{ static_url('pinnwand.js') }}"></script>
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="/"><img class="logo" src="{{ static_url('logo.png') }}"></a>
<a href="/"><img class="logo" src="/static/logo.png"></a>
</li>
</ul>
</nav>
Expand Down

0 comments on commit c3986b3

Please sign in to comment.