56 lines
1.8 KiB
HTML
56 lines
1.8 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title%}{{ blogBase['title'] }}{% endblock %}
|
|
|
|
{% block style %}
|
|
<style>
|
|
h1 a:not([href]){color:inherit;text-decoration:none;vertical-align: bottom;font-size:40px;font-family:Monaco;}
|
|
.title-right{display:flex;margin:auto 0 0 auto;}
|
|
.title-right .circle{padding: 14px 16px;margin-right:8px;}
|
|
#cmButton{height:48px;margin-top:48px;}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<h1>
|
|
<a>{{ blogBase['postTitle'] }}</a>
|
|
</h1>
|
|
<div class="title-right">
|
|
|
|
<button id="buttonHome" class="btn btn-invisible circle" onclick="window.location.href='/'" title="{{ i18n['home'] }}">
|
|
<svg class="octicon" width="16" height="16">
|
|
<path id="pathHome" fill-rule="evenodd"></path>
|
|
</svg>
|
|
</button>
|
|
|
|
<button class="btn btn-invisible circle" onclick="window.open('{{ blogBase["postSourceUrl"] }}')" title="Issue">
|
|
<svg class="octicon" width="16" height="16">
|
|
<path id="pathIssue" fill-rule="evenodd"></path>
|
|
</svg>
|
|
</button>
|
|
|
|
<button id="changeTheme" class="btn btn-invisible circle" onclick="modeSwitch()" title="{{ i18n['switchTheme'] }}">
|
|
<svg class="octicon" width="16" height="16" >
|
|
<path id="themeSwitch" fill-rule="evenodd"></path>
|
|
</svg>
|
|
</button>
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="markdown-body">
|
|
{{ blogBase['postBody'] }}
|
|
</div>
|
|
<button class="btn btn-block" type="button" onclick="openComments()" id="cmButton" value="{{ blogBase['repoName'] }}">{{ i18n['comments'] }}</button>
|
|
<div class="comments" id="comments"></div>
|
|
{% endblock %}
|
|
|
|
{% block script %}
|
|
<script>
|
|
document.getElementById("pathHome").setAttribute("d",IconList["home"]);
|
|
document.getElementById("pathIssue").setAttribute("d",IconList["github"]);
|
|
|
|
</script>
|
|
{% endblock %}
|