Ensure base path always starts and ends with /
The base path is an absolute path, so it should always start with /. Whenever it is used, it must also always be followed by at least one /, so baking that into the value makes sense. Finally, we can now deduplicate the / in case the base path is the root.
This commit is contained in:
parent
d5a41abaff
commit
6ed6ff1a36
4 changed files with 18 additions and 19 deletions
|
|
@ -5,20 +5,17 @@
|
|||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>{% block title %}{% endblock %} - {{ base.repo_name }}</title>
|
||||
<link rel="icon" href="/logo.svg">
|
||||
<link rel="stylesheet" href="{{ base.root }}/base.css" />
|
||||
<link rel="icon" href="{{ base.root }}logo.svg">
|
||||
<link rel="stylesheet" href="{{ base.root }}base.css" />
|
||||
{% block head %}{% endblock %}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<a href="{{ base.root }}/" {% if base.current=="index" %} class="current" {% endif %}>
|
||||
<img src="{{ base.root }}/logo.svg" alt="">{{ base.repo_name }}
|
||||
<a href="{{ base.root }}" {% if base.current=="index" %} class="current" {% endif %}>
|
||||
<img src="{{ base.root }}logo.svg" alt="">{{ base.repo_name }}
|
||||
</a>
|
||||
<a href="{{ base.root }}/commit/" {% if base.current=="commit" %} class="current" {% endif %}>
|
||||
commit
|
||||
</a>
|
||||
<a href="{{ base.root }}/queue/" {% if base.current=="queue" %} class="current" {% endif %}>
|
||||
<a href="{{ base.root }}queue/" {% if base.current=="queue" %} class="current" {% endif %}>
|
||||
queue
|
||||
</a>
|
||||
</nav>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue