Skip to content

Commit

Permalink
First commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Candle5000 committed Sep 1, 2019
0 parents commit cadd3d0
Show file tree
Hide file tree
Showing 7 changed files with 158 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitignore
@@ -0,0 +1,30 @@

# Created by https://www.gitignore.io/api/hugo,linux
# Edit at https://www.gitignore.io/?templates=hugo,linux

### Hugo ###
# Generated files by hugo
/public/
/resources/_gen/

# Executable may be added to repository
hugo.exe
hugo.darwin
hugo.linux

### Linux ###
*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

# End of https://www.gitignore.io/api/hugo,linux
3 changes: 3 additions & 0 deletions .gitmodules
@@ -0,0 +1,3 @@
[submodule "themes/blackburn"]
path = themes/blackburn
url = https://github.com/yoshiharuyamashita/blackburn.git
6 changes: 6 additions & 0 deletions archetypes/default.md
@@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

77 changes: 77 additions & 0 deletions config.toml
@@ -0,0 +1,77 @@
baseURL = "http://blog.cd5.jp/"
languageCode = "ja-jp"
title = "管理人の日記Part5"
theme = "blackburn"
# Shown in the side menu
copyright = "© 2019. Candle Doe All rights reserved."
canonifyurls = true
paginate = 10
hasCJKLanguage = true

[indexes]
tag = "tags"
topic = "topics"

[params]
# Shown in the home page
subtitle = "cd5.jp管理人 蝋燭の日記 第5部"
brand = "BLOG.CD5.JP"
googleAnalytics = ""
disqus = ""
# CSS name for highlight.js
highlightjs = "androidstudio"
highlightjs_extra_languages = ["yaml"]
# dateFormat = "02 Jan 2006, 15:04"
dateFormat = "2006-01-02 15:04"
# Include any custom CSS and/or JS files
# (relative to /static folder)
custom_css = ["css/my.css"]
custom_js = ["js/my.js"]

[menu]
# Shown in the side menu.
[[menu.main]]
name = "Home"
pre = "<i class='fa fa-home fa-fw'></i>"
weight = 1
identifier = "home"
url = "/"
[[menu.main]]
name = "Posts"
pre = "<i class='fa fa-list fa-fw'></i>"
weight = 2
identifier = "post"
url = "/post/"
# [[menu.main]]
# name = "About"
# pre = "<i class='fa fa-user fa-fw'></i>"
# weight = 3
# identifier = "about"
# url = "/about/"
# [[menu.main]]
# name = "Contact"
# pre = "<i class='fa fa-phone fa-fw'></i>"
# weight = 4
# url = "/contact/"

[social]
# Link your social networking accounts to the side menu
# by entering your username or ID.

# SNS microblogging
twitter = "candle1388"

# SNS photo/video sharing

# SNS career oriented

# SNS news

# Techie
github = "Candle5000"

# Gaming

# Music

# Other
10 changes: 10 additions & 0 deletions content/post/my-first-post.md
@@ -0,0 +1,10 @@
---
title: "はじめての記事作成"
date: 2019-09-01T18:09:33+09:00
draft: true
---
# 記事投稿テストですよ!!
この投稿はblog.cd5.jpの最初の投稿です。

次回はこの記事をインターネットに公開するまでの物語について記載したいと思います。

31 changes: 31 additions & 0 deletions static/css/my.css
@@ -0,0 +1,31 @@
body {
background-color: lemonchiffon;
}
.header,#menu .brand {
font-family: arial, sans-serif;
}
.header h2 {
color: #ca8;
}

.menu-link:hover, .menu-link:focus {
background-color: #432;
}
.menu-link {
background: rgba(68,51,18,0.7);
}
#menu {
background-color: #432;
}

@media (max-width: 48em) {
.header h1 {
font-size: 1.5em;
}
.header h2 {
font-size: 1.1em;
}
h2 {
font-size: 1.25em;
}
}
1 change: 1 addition & 0 deletions themes/blackburn
Submodule blackburn added at 643be7

0 comments on commit cadd3d0

Please sign in to comment.