vault backup: 2022-11-11 08:35:03

Affected files:
_layouts/default.html
_layouts/leapday.html
This commit is contained in:
Andley Chang 2022-11-11 08:35:03 +08:00
parent 5d3f2842d0
commit a6feaa14f1
2 changed files with 57 additions and 1 deletions

View File

@ -22,7 +22,7 @@
<body>
<header>
<h1>{{ page.title | default: site.title | default: site.github.repository_name }} <a href="{{site.url}}/BG4E/"><img src="./home64px.png alt="回到首頁"></a></h1>
<h1>{{ page.title | default: site.title | default: site.github.repository_name }}<a href="{{site.url}}/BG4E/"><img src="./home64px.png" alt="回到首頁"></a></h1>
<p>{{ page.description | default: site.description | default: site.github.project_tagline }}</p>
</header>

56
_layouts/leapday.html Normal file
View File

@ -0,0 +1,56 @@
<!doctype html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
{% seo %}
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<script src="https://code.jquery.com/jquery-3.3.0.min.js" integrity="sha256-RTQy8VOmNlT6b2PIRur37p6JEBZUE7o8wPgMvu18MC4=" crossorigin="anonymous"></script>
<script src="{{ '/assets/js/main.js' | relative_url }}"></script>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" integrity="sha256-3Jy/GbSLrg0o9y5Z5n1uw0qxZECH7C6OQpVBgNFYa0g=" crossorigin="anonymous"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
{% include head-custom.html %}
</head>
<body>
<header>
<h1>{{ page.title | default: site.title | default: site.github.repository_name }}</h1>
<p>{{ page.description | default: site.description | default: site.github.project_tagline }}</p>
</header>
<div id="banner">
<span id="logo"></span>
<a href="{{ site.github.repository_url }}" class="button fork"><strong>View On GitHub</strong></a>
{% if site.show_downloads %}
<div class="downloads">
<span>Downloads:</span>
<ul>
<li><a href="{{ site.github.zip_url }}" class="button">ZIP</a></li>
<li><a href="{{ site.github.tar_url }}" class="button">TAR</a></li>
</ul>
</div>
{% endif %}
</div><!-- end banner -->
<div class="wrapper">
<nav>
<ul></ul>
</nav>
<section>
{{ content }}
</section>
<footer>
{% if site.github.is_project_page %}
<p>Project maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
{% endif %}
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://twitter.com/mattgraham">mattgraham</a></small></p>
</footer>
</div>
</body>
</html>