commit dbb1da93607dedcb9fffcd0d9e03ab9024e62be0 Author: Dmitry Date: Tue Aug 13 16:23:48 2019 +0300 initial commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..bf2b684 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/beautifulhugo"] + path = themes/beautifulhugo + url = https://github.com/halogenica/beautifulhugo.git diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..4ef6b6c --- /dev/null +++ b/config.toml @@ -0,0 +1,69 @@ +baseurl = "https://blog.b4tman.ru" +DefaultContentLanguage = "ru" +title = "b4tman.ru" +theme = "beautifulhugo" +metaDataFormat = "yaml" +pygmentsStyle = "trac" +pygmentsUseClasses = true +pygmentsCodeFences = true +pygmentsCodefencesGuessSyntax = true +#pygmentsUseClassic = true +#pygmentOptions = "linenos=inline" +#disqusShortname = "XXX" +#googleAnalytics = "XXX" + +[Params] +# homeTitle = "Beautiful Hugo Theme" # Set a different text for the header on the home page + subtitle = " " + logo = "img/img.jpg" # Expecting square dimensions + favicon = "img/favicon.ico" + dateFormat = "January 2, 2006" + commit = false + rss = true + comments = true + readingTime = true + wordCount = true + useHLJS = true + socialShare = true + delayDisqus = true + showRelatedPosts = true +# gcse = "012345678901234567890:abcdefghijk" # Get your code from google.com/cse. Make sure to go to "Look and Feel" and change Layout to "Full Width" and Theme to "Classic" + +[Author] + name = "Dmitry Belyaev" + website = "https://b4tman.ru" + email = "b4tm4n@mail.ru" + github = "b4tman" + gitlab = "b4tman" + bitbucket = "b4tman" + vk = "0xffff" + +[[menu.main]] + name = "Блог" + url = "" + weight = 1 + +[[menu.main]] + name = "Git" + url = "https://gitea.b4tman.ru" + weight = 2 + +[[menu.main]] + name = "Вопросы" + url = "https://b4tman.ru/q/" + weight = 3 + +[[menu.main]] + name = "Календарь" + url = "https://b4tman.ru/calendar/" + weight = 3 + +[[menu.main]] + name = "обо мне" + url = "page/about/" + weight = 3 + +[[menu.main]] + name = "теги" + url = "tags" + weight = 3 diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..13df19c --- /dev/null +++ b/content/_index.md @@ -0,0 +1,4 @@ +## Привет! + +Короче привет! + diff --git a/content/page/about.md b/content/page/about.md new file mode 100644 index 0000000..c5de336 --- /dev/null +++ b/content/page/about.md @@ -0,0 +1,13 @@ +--- +title: Обо мне +subtitle: Кто я такой? +comments: false +--- + +Меня зовут Дмитрий. + +Забавные факты: + +- я очень ленив + +Ну типа всё? diff --git a/content/post/2019-08-13-first-post.md b/content/post/2019-08-13-first-post.md new file mode 100644 index 0000000..e52eb3b --- /dev/null +++ b/content/post/2019-08-13-first-post.md @@ -0,0 +1,6 @@ +--- +title: Первый пост! +date: 2019-08-13 +--- + +Привет мир! Ну вот наконец то и первый пост! \ No newline at end of file diff --git a/layouts/partials/footer_custom.html b/layouts/partials/footer_custom.html new file mode 100644 index 0000000..18abf62 --- /dev/null +++ b/layouts/partials/footer_custom.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/layouts/partials/head_custom.html b/layouts/partials/head_custom.html new file mode 100644 index 0000000..e69de29 diff --git a/static/.gitkeep b/static/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/static/img/img.jpg b/static/img/img.jpg new file mode 100644 index 0000000..065cb35 Binary files /dev/null and b/static/img/img.jpg differ diff --git a/themes/beautifulhugo b/themes/beautifulhugo new file mode 160000 index 0000000..07f7656 --- /dev/null +++ b/themes/beautifulhugo @@ -0,0 +1 @@ +Subproject commit 07f765675dab2b00ad39aa460118edff2f2d3fcd