Implement handling of one post in multiple languages.
This commit is contained in:
parent
12b5e31e49
commit
21a857ea41
2 changed files with 41 additions and 15 deletions
|
@ -4,19 +4,19 @@
|
|||
<meta charset="utf-8">
|
||||
<title>{{ title }} @ Código para llevar [blog]</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="../../css/style.css" />
|
||||
<link rel="stylesheet" href="../../css/light-syntax.css" />
|
||||
<link rel="stylesheet" href="../../css/dark-syntax.css" />
|
||||
<link rel="stylesheet" href="{{ base_path }}/css/style.css" />
|
||||
<link rel="stylesheet" href="{{ base_path }}/css/light-syntax.css" />
|
||||
<link rel="stylesheet" href="{{ base_path }}/css/dark-syntax.css" />
|
||||
</head>
|
||||
<body class="blog">
|
||||
<div class="site-header">
|
||||
<h1 class="site-name"><a href="../../">Codigo para llevar [blog]</a></h1>
|
||||
<h1 class="site-name"><a href="{{ base_path }}/">Codigo para llevar [blog]</a></h1>
|
||||
<nav class="site-links">
|
||||
<span class="fancy-link">
|
||||
<a href="../../../">Home</a>
|
||||
<a href="{{ base_path }}/../">Home</a>
|
||||
</span>
|
||||
<span class="fancy-link">
|
||||
<a href="../../../notes/">Notes</a>
|
||||
<a href="{{ base_path }}/../notes/">Notes</a>
|
||||
</span>
|
||||
<span class="fancy-link">
|
||||
<a href="https://github.com/kenkeiras">GitHub</a>
|
||||
|
@ -38,7 +38,7 @@
|
|||
</time>
|
||||
<ul class="post-tags">
|
||||
{% for post_tag in post_tags %}
|
||||
<li class="post-tag"><a href="../../tags/{{ post_tag }}/"</a>{{ post_tag }}</a></li>
|
||||
<li class="post-tag"><a href="{{ base_path }}/tags/{{ post_tag }}/"</a>{{ post_tag }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue