Merge branch 'gh-pages' of https://github.com/tom5079/Pupil into gh-pages

This commit is contained in:
tom5079
2019-05-16 13:12:10 +09:00
6 changed files with 90 additions and 12 deletions

3
Gemfile Normal file
View File

@@ -0,0 +1,3 @@
source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins

View File

@@ -9,4 +9,20 @@ google_analytics: UA-119938781-2
github:
app_url: https://github.com/tom5079/Pupil-issue/releases/download/1.4/Pupil-v1.4.apk
issue_url: https://github.com/tom5079/Pupil-issue/issues/new/choose
issue_url: https://github.com/tom5079/Pupil-issue/issues/new/choose
t:
en:
header:
description: "Hitomi.la viewer for Android"
download: "Download app"
issue: "Having a problem?"
or: "or…"
email: "Send an E-mail"
ko:
header:
description: "안드로이드 Hitomi.la 뷰어"
download: "앱 다운로드"
issue: "문제가 있으세요?"
or: "또는…"
email: "이메일 보내기"

View File

@@ -23,10 +23,12 @@
<body>
<header class="page-header" role="banner">
<h1 class="project-name">{{ page.title | default: site.title | default: site.github.repository_name }}</h1>
<h2 class="project-tagline">{{ page.description | default: site.description | default: site.github.project_tagline }}</h2>
<h2 class="project-tagline">{{ page.description | default: site.t[page.lang].header.description }}</h2>
{% if site.show_downloads %}
<a href="{{ site.github.app_url }}" class="btn">Download app (v1.4)</a>
<a href="{{ site.github.issue_url }}" target="_blank" class="btn">Having a problem?</a>
<a href="{{ site.github.app_url }}" class="btn">{{ site.t[page.lang].header.download }}</a>
<a href="{{ site.github.issue_url }}" target="_blank" class="btn">{{ site.t[page.lang].header.issue }}</a>
{{ site.t[page.lang].header.or }}
<a href="mailto:pupil.hentai@gmail.com" class="btn">{{ site.t[page.lang].header.email }}</a>
{% endif %}
</header>
@@ -41,4 +43,4 @@
</footer>
</main>
</body>
</html>
</html>

26
en/index.html Normal file
View File

@@ -0,0 +1,26 @@
---
layout: default
lang: en
---
<div id="home">
<h1>Blog posts</h1>
{% assign posts=site.posts | where:"lang", page.lang %}
<ul class="posts">
{% for post in posts %}
<li>
<span>
{{ post.date | date_to_string }}
</span>
&raquo;
<a href="{{ post.url }}">
{{ post.title }}
</a>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>
</div>

View File

@@ -1,7 +1,12 @@
---
layout: default
---
<div id="home">
<h1>Blog Posts</h1>
</div>
<script>
var lang = navigator.language || navigator.userLanguage;
switch (lang) {
case "ko-KR":
window.location.href = "ko/";
break;
default:
window.location.href = "en/";
break;
}
</script>

26
ko/index.html Normal file
View File

@@ -0,0 +1,26 @@
---
layout: default
lang: ko
---
<div id="home">
<h1>글 목록</h1>
{% assign posts=site.posts | where:"lang", page.lang %}
<ul class="posts">
{% for post in posts %}
<li>
<span>
{{ post.date | date_to_string }}
</span>
&raquo;
<a href="{{ post.url }}">
{{ post.title }}
</a>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>
</div>