Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mazgi/hugo-theme-techlog-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHidenori MATSUKI <MATSUKI.Hidenori@gmail.com>2018-10-07 20:03:47 +0300
committerHidenori MATSUKI <MATSUKI.Hidenori@gmail.com>2018-10-07 20:03:47 +0300
commiteb8a202acef96ee5b488dc9880758353ee912f70 (patch)
treeb5490bbd6000d01573b9a6130d8a08914fb038ad /exampleSite
parent3295e05d8b0916f2775ecb21386ca284282a1c82 (diff)
Rename example site directory: example-site -> exampleSite.
ref: https://github.com/gohugoio/hugoThemes
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/.gitignore2
-rw-r--r--exampleSite/Dockerfile14
-rw-r--r--exampleSite/archetypes/default.md6
-rw-r--r--exampleSite/config.toml33
-rw-r--r--exampleSite/content/about.en.md14
-rw-r--r--exampleSite/content/about.ja.md14
-rw-r--r--exampleSite/content/posts/2006.01/first-page.en.md10
-rw-r--r--exampleSite/content/posts/2006.01/first-page.ja.md13
-rw-r--r--exampleSite/content/posts/2006.02/a-fun-light-novel-didnt-i-say-to-make-my-abilities-average-in-the-next-life.en.md12
-rw-r--r--exampleSite/content/posts/2006.02/a-fun-light-novel-didnt-i-say-to-make-my-abilities-average-in-the-next-life.ja.md12
-rw-r--r--exampleSite/content/profiles/john.en.md4
-rw-r--r--exampleSite/content/profiles/smith.en.md4
-rw-r--r--exampleSite/docker-compose.yml10
-rw-r--r--exampleSite/firebase.json10
14 files changed, 158 insertions, 0 deletions
diff --git a/exampleSite/.gitignore b/exampleSite/.gitignore
new file mode 100644
index 0000000..d76897d
--- /dev/null
+++ b/exampleSite/.gitignore
@@ -0,0 +1,2 @@
+/public/
+/.firebase/
diff --git a/exampleSite/Dockerfile b/exampleSite/Dockerfile
new file mode 100644
index 0000000..e3a2b9d
--- /dev/null
+++ b/exampleSite/Dockerfile
@@ -0,0 +1,14 @@
+FROM ubuntu:18.04@sha256:de774a3145f7ca4f0bd144c7d4ffb2931e06634f11529653b23eba85aef8e378
+MAINTAINER "Hidenori MATSUKI <matsuki.hidenori+docker@gmail.com>"
+
+ENV DOCKERBUILD_HUGO_VERSION="0.49"
+ENV DEBIAN_FRONTEND="noninteractive"
+
+RUN : 'Install packages' \
+ && apt update \
+ && apt install -y --no-install-recommends ca-certificates openssh-client curl git \
+ && : 'Download and install Hugo' \
+ && curl -LO "https://github.com/gohugoio/hugo/releases/download/v${DOCKERBUILD_HUGO_VERSION}/hugo_${DOCKERBUILD_HUGO_VERSION}_Linux-64bit.deb" \
+ && dpkg -i hugo_${DOCKERBUILD_HUGO_VERSION}_Linux-64bit.deb \
+ && : 'Clean up' \
+ && apt clean
diff --git a/exampleSite/archetypes/default.md b/exampleSite/archetypes/default.md
new file mode 100644
index 0000000..00e77bd
--- /dev/null
+++ b/exampleSite/archetypes/default.md
@@ -0,0 +1,6 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+draft: true
+---
+
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..ed203ab
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,33 @@
+baseURL = "http://example.org/"
+languageCode = "en-us"
+title = "A Hugo theme"
+theme = "techlog-simple"
+defaultContentLanguage = "en"
+# defaultContentLanguage = "ja"
+hasCJKLanguage = true
+enableEmoji = true
+pygmentsCodeFences = true
+pygmentsStyle = "friendly"
+enableGitInfo = true
+enableRobotsTXT = true
+# googleAnalytics = "UA-00000000-1"
+
+[taxonomies]
+category = "categories"
+tag = "tags"
+author = "authors"
+
+[languages]
+[languages.en]
+weight = 1
+languageName = "English"
+
+[languages.ja]
+weight = 10
+languageName = "日本語"
+
+[params.sns]
+github = "mazgi"
+twitter = "mazgi"
+instagram = "mazgi"
+# facebook = ""
diff --git a/exampleSite/content/about.en.md b/exampleSite/content/about.en.md
new file mode 100644
index 0000000..8f2d507
--- /dev/null
+++ b/exampleSite/content/about.en.md
@@ -0,0 +1,14 @@
+---
+title: "About"
+date: 2018-05-03T06:39:45+09:00
+---
+
+Admin: **John Doe**
+
+:pizza: :beer:
+
+website: [hugo-theme-techlog-simple](https://github.com/mazgi/hugo-theme-techlog-simple)
+
+<!--more-->
+
+(TBD)
diff --git a/exampleSite/content/about.ja.md b/exampleSite/content/about.ja.md
new file mode 100644
index 0000000..55b2c2b
--- /dev/null
+++ b/exampleSite/content/about.ja.md
@@ -0,0 +1,14 @@
+---
+title: "あばうと"
+date: 2018-05-03T06:39:45+09:00
+---
+
+管理人: **じょん・どぅ**
+
+:sushi: :sake:
+
+website: [hugo-theme-techlog-simple](https://github.com/mazgi/hugo-theme-techlog-simple)
+
+<!--more-->
+
+(TBD)
diff --git a/exampleSite/content/posts/2006.01/first-page.en.md b/exampleSite/content/posts/2006.01/first-page.en.md
new file mode 100644
index 0000000..d351aca
--- /dev/null
+++ b/exampleSite/content/posts/2006.01/first-page.en.md
@@ -0,0 +1,10 @@
+---
+title: "First Page"
+date: 2018-10-04T05:12:12Z
+tags: ['hugo', 'example']
+authors: ['John', 'Jugemu Jugemu Gokoh no Surikire']
+---
+
+## My first post
+
+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc,
diff --git a/exampleSite/content/posts/2006.01/first-page.ja.md b/exampleSite/content/posts/2006.01/first-page.ja.md
new file mode 100644
index 0000000..8c4935d
--- /dev/null
+++ b/exampleSite/content/posts/2006.01/first-page.ja.md
@@ -0,0 +1,13 @@
+---
+title: "最初のページ"
+date: 2018-10-04T05:12:12Z
+tags: ['hugo', 'example']
+authors: ['John', 'Jugemu Jugemu Gokoh no Surikire']
+---
+
+## 私の最初のポスト
+
+そのころわたくしは、モリーオ市の博物局に勤めて居りました。
+十八等官でしたから役所のなかでも、ずうっと下の方でしたし俸給ほうきゅうもほんのわずかでしたが、受持ちが標本の採集や整理で生れ付き好きなことでしたから、わたくしは毎日ずいぶん愉快にはたらきました。殊にそのころ、モリーオ市では競馬場を植物園に拵こしらえ直すというので、その景色のいいまわりにアカシヤを植え込んだ広い地面が、切符売場や信号所の建物のついたまま、わたくしどもの役所の方へまわって来たものですから、わたくしはすぐ宿直という名前で月賦で買った小さな蓄音器と二十枚ばかりのレコードをもって、その番小屋にひとり住むことになりました。わたくしはそこの馬を置く場所に板で小さなしきいをつけて一疋の山羊を飼いました。毎朝その乳をしぼってつめたいパンをひたしてたべ、それから黒い革のかばんへすこしの書類や雑誌を入れ、靴もきれいにみがき、並木のポプラの影法師を大股にわたって市の役所へ出て行くのでした。
+あのイーハトーヴォのすきとおった風、夏でも底に冷たさをもつ青いそら、うつくしい森で飾られたモリーオ市、郊外のぎらぎらひかる草の波。
+またそのなかでいっしょになったたくさんのひとたち、ファゼーロとロザーロ、羊飼のミーロや、顔の赤いこどもたち、地主のテーモ、山猫博士のボーガント・デストゥパーゴなど、いまこの暗い巨きな石の建物のなかで考えていると、みんなむかし風のなつかしい青い幻燈のように思われます。では、わたくしはいつかの小さなみだしをつけながら、しずかにあの年のイーハトーヴォの五月から十月までを書きつけましょう。
diff --git a/exampleSite/content/posts/2006.02/a-fun-light-novel-didnt-i-say-to-make-my-abilities-average-in-the-next-life.en.md b/exampleSite/content/posts/2006.02/a-fun-light-novel-didnt-i-say-to-make-my-abilities-average-in-the-next-life.en.md
new file mode 100644
index 0000000..db034fa
--- /dev/null
+++ b/exampleSite/content/posts/2006.02/a-fun-light-novel-didnt-i-say-to-make-my-abilities-average-in-the-next-life.en.md
@@ -0,0 +1,12 @@
+---
+title: "A fun light novel: \"Didn't I Say to Make My Abilities Average in the Next Life?!\""
+date: 2018-10-04T08:03:57Z
+tags: ['light-novel']
+authors: ['smith', 'John', 'Popuko', 'Pipimi']
+---
+
+## Long title test page
+
+It has the long long title.
+
+<a href="https://www.amazon.co.jp/dp/162692869X/ref=as_li_ss_il?ie=UTF8&linkCode=li2&tag=mazgi-22&linkId=a574f8611eda2e482cee00a9d660fc8a&language=en_US" target="_blank"><img border="0" src="//ws-fe.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=162692869X&Format=_SL160_&ID=AsinImage&MarketPlace=JP&ServiceVersion=20070822&WS=1&tag=mazgi-22&language=en_US" ></a><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=mazgi-22&language=en_US&l=li2&o=9&a=162692869X" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
diff --git a/exampleSite/content/posts/2006.02/a-fun-light-novel-didnt-i-say-to-make-my-abilities-average-in-the-next-life.ja.md b/exampleSite/content/posts/2006.02/a-fun-light-novel-didnt-i-say-to-make-my-abilities-average-in-the-next-life.ja.md
new file mode 100644
index 0000000..199b752
--- /dev/null
+++ b/exampleSite/content/posts/2006.02/a-fun-light-novel-didnt-i-say-to-make-my-abilities-average-in-the-next-life.ja.md
@@ -0,0 +1,12 @@
+---
+title: "オススメのライトノベル: 「私、能力は平均値でって言ったよね!」"
+date: 2018-10-04T08:03:57Z
+tags: ['light-novel']
+authors: ['smith', 'John', 'Popuko', 'Pipimi']
+---
+
+## 長いタイトルのテストページ
+
+このラノベはタイトルが長くオススメです。
+
+<a href="https://www.amazon.co.jp/gp/product/B01GRZ8UU8/ref=as_li_ss_il?ie=UTF8&linkCode=li2&tag=mazgi-22&linkId=16447693e4461a7787d30197ae3b48ff&language=en_US" target="_blank"><img border="0" src="//ws-fe.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B01GRZ8UU8&Format=_SL160_&ID=AsinImage&MarketPlace=JP&ServiceVersion=20070822&WS=1&tag=mazgi-22&language=en_US" ></a><img src="https://ir-jp.amazon-adsystem.com/e/ir?t=mazgi-22&language=en_US&l=li2&o=9&a=B01GRZ8UU8" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
diff --git a/exampleSite/content/profiles/john.en.md b/exampleSite/content/profiles/john.en.md
new file mode 100644
index 0000000..f1f256d
--- /dev/null
+++ b/exampleSite/content/profiles/john.en.md
@@ -0,0 +1,4 @@
+Hello. My name is John.
+
+- [My website](#)
+- [My SNS page](#)
diff --git a/exampleSite/content/profiles/smith.en.md b/exampleSite/content/profiles/smith.en.md
new file mode 100644
index 0000000..1756ef4
--- /dev/null
+++ b/exampleSite/content/profiles/smith.en.md
@@ -0,0 +1,4 @@
+Hi! I'm Smith
+
+- [website](#)
+- [website 2](#)
diff --git a/exampleSite/docker-compose.yml b/exampleSite/docker-compose.yml
new file mode 100644
index 0000000..11669a9
--- /dev/null
+++ b/exampleSite/docker-compose.yml
@@ -0,0 +1,10 @@
+version: '2'
+services:
+ website:
+ build: .
+ working_dir: /techlog-simple/exampleSite
+ command: hugo server --themesDir="../.." --bind 0.0.0.0 --buildDrafts
+ volumes:
+ - ../:/techlog-simple
+ ports:
+ - '1313:1313'
diff --git a/exampleSite/firebase.json b/exampleSite/firebase.json
new file mode 100644
index 0000000..e782939
--- /dev/null
+++ b/exampleSite/firebase.json
@@ -0,0 +1,10 @@
+{
+ "hosting": {
+ "public": "public",
+ "ignore": [
+ "firebase.json",
+ "**/.*",
+ "**/node_modules/**"
+ ]
+ }
+}