9 | Error 404
10 |├── layouts ├── sitemap.xml ├── _default │ ├── single.html │ ├── section.html │ └── terms.html ├── shortcodes │ ├── img.html │ └── youtube.html ├── partials │ ├── script.html │ ├── comments.html │ ├── social_links.html │ ├── header.html │ ├── google_analytics.html │ ├── footer.html │ ├── pagination.html │ ├── navigation.html │ └── head.html ├── 404.html ├── page │ └── single.html ├── tag │ └── tag.html ├── post │ ├── summary.html │ └── single.html ├── rss.xml └── index.html ├── exampleSite ├── create_search_index.py ├── content │ ├── about.ru.md │ ├── about.md │ ├── post │ │ ├── my-first-post.md │ │ ├── my-fourth-post.md │ │ ├── my-third-post.md │ │ ├── my-second-post.md │ │ ├── my-first-post.ru.md │ │ ├── my-third-post.ru.md │ │ ├── my-fifth-post.ru.md │ │ ├── my-second-post.ru.md │ │ ├── my-fourth-post.ru.md │ │ ├── lorem-ipsum.md │ │ ├── lorem-ipsum.ru.md │ │ └── is-that-a-cooking-show.md │ ├── contact.md │ ├── contact.ru.md │ └── search.md └── config.toml ├── requirements.txt ├── images ├── tn.png └── screenshot.png ├── .gitignore ├── archetypes └── default.md ├── static ├── images │ ├── 404.jpg │ └── icons │ │ ├── rss.png │ │ ├── amazon.png │ │ ├── flickr.png │ │ ├── lastfm.png │ │ ├── picasa.png │ │ ├── skype.png │ │ ├── tumblr.png │ │ ├── vimeo.png │ │ ├── dribbble.png │ │ ├── facebook.png │ │ ├── ffffound.png │ │ ├── linkedin.png │ │ ├── twitter.png │ │ ├── youtube.png │ │ ├── deviantart.png │ │ ├── googleplus.png │ │ └── pinterest.png ├── tipuesearch │ ├── img │ │ ├── link.png │ │ ├── expand.png │ │ └── loader.gif │ ├── tipuesearch_set.js │ ├── tipuesearch.css │ └── tipuesearch.min.js └── css │ ├── highlight │ └── styles │ │ ├── pojoaque.jpg │ │ ├── brown_papersq.png │ │ ├── school_book.png │ │ ├── ascetic.css │ │ ├── mono-blue.css │ │ ├── tomorrow.css │ │ ├── paraiso.dark.css │ │ ├── paraiso.light.css │ │ ├── vs.css │ │ ├── kimbie.dark.css │ │ ├── kimbie.light.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow-night-blue.css │ │ ├── rainbow.css │ │ ├── ir_black.css │ │ ├── codepen-embed.css │ │ ├── atelier-dune.dark.css │ │ ├── atelier-dune.light.css │ │ ├── atelier-heath.dark.css │ │ ├── railscasts-min.css │ │ ├── atelier-heath.light.css │ │ ├── atelier-forest.dark.css │ │ ├── atelier-forest.light.css │ │ ├── atelier-seaside.dark.css │ │ ├── solarized_dark.css │ │ ├── solarized_light.css │ │ ├── atelier-lakeside.dark.css │ │ ├── atelier-seaside.light.css │ │ ├── pojoaque.css │ │ ├── atelier-lakeside.light.css │ │ ├── dark.css │ │ ├── brown_paper.css │ │ ├── foundation.css │ │ ├── far.css │ │ ├── github.css │ │ ├── idea.css │ │ ├── zenburn.css │ │ ├── magula.css │ │ ├── school_book.css │ │ ├── docco.css │ │ ├── monokai.css │ │ ├── googlecode.css │ │ ├── arta.css │ │ ├── obsidian.css │ │ ├── monokai_sublime.css │ │ ├── xcode.css │ │ ├── sunburst.css │ │ ├── default.css │ │ ├── hybrid.css │ │ ├── railscasts.css │ │ └── color-brewer.css │ ├── basscss-min.css │ ├── main-min.css │ └── main.css ├── i18n ├── en.toml └── ru.toml ├── theme.toml ├── LICENSE.md ├── README.md └── create_search_index.py /layouts/sitemap.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/shortcodes/img.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/_default/section.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/script.html: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /exampleSite/create_search_index.py: -------------------------------------------------------------------------------- 1 | ../create_search_index.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.12.3 2 | html5lib==1.1 3 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/images/tn.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | 4 | hugo 5 | public/* 6 | content/* 7 | config.* 8 | exampleSite/public/ 9 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "" 3 | description = "" 4 | tags = [] 5 | draft = true 6 | +++ 7 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /static/images/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/404.jpg -------------------------------------------------------------------------------- /static/images/icons/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/rss.png -------------------------------------------------------------------------------- /static/images/icons/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/amazon.png -------------------------------------------------------------------------------- /static/images/icons/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/flickr.png -------------------------------------------------------------------------------- /static/images/icons/lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/lastfm.png -------------------------------------------------------------------------------- /static/images/icons/picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/picasa.png -------------------------------------------------------------------------------- /static/images/icons/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/skype.png -------------------------------------------------------------------------------- /static/images/icons/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/tumblr.png -------------------------------------------------------------------------------- /static/images/icons/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/vimeo.png -------------------------------------------------------------------------------- /layouts/partials/comments.html: -------------------------------------------------------------------------------- 1 | {{ if (.Site.DisqusShortname) }} 2 | {{ template "_internal/disqus.html" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /static/images/icons/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/dribbble.png -------------------------------------------------------------------------------- /static/images/icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/facebook.png -------------------------------------------------------------------------------- /static/images/icons/ffffound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/ffffound.png -------------------------------------------------------------------------------- /static/images/icons/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/linkedin.png -------------------------------------------------------------------------------- /static/images/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/twitter.png -------------------------------------------------------------------------------- /static/images/icons/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/youtube.png -------------------------------------------------------------------------------- /static/tipuesearch/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/tipuesearch/img/link.png -------------------------------------------------------------------------------- /static/images/icons/deviantart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/deviantart.png -------------------------------------------------------------------------------- /static/images/icons/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/googleplus.png -------------------------------------------------------------------------------- /static/images/icons/pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/images/icons/pinterest.png -------------------------------------------------------------------------------- /static/tipuesearch/img/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/tipuesearch/img/expand.png -------------------------------------------------------------------------------- /static/tipuesearch/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/tipuesearch/img/loader.gif -------------------------------------------------------------------------------- /static/css/highlight/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/css/highlight/styles/pojoaque.jpg -------------------------------------------------------------------------------- /static/css/highlight/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/css/highlight/styles/brown_papersq.png -------------------------------------------------------------------------------- /static/css/highlight/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azmelanar/hugo-theme-pixyll/HEAD/static/css/highlight/styles/school_book.png -------------------------------------------------------------------------------- /exampleSite/content/about.ru.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2014-11-08T16:42:18+04:00" 3 | draft = false 4 | title = "О нас" 5 | slug = "about" 6 | 7 | +++ 8 | 9 | Пару слов о проекте. 10 | -------------------------------------------------------------------------------- /exampleSite/content/about.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = "2014-11-08T16:42:18+04:00" 3 | draft = false 4 | title = "About" 5 | slug = "about" 6 | 7 | +++ 8 | 9 | Few words about project. 10 | -------------------------------------------------------------------------------- /exampleSite/content/post/my-first-post.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "My First post" 3 | date = "2017-08-30T18:34:02+00:00" 4 | tags = ["blog"] 5 | draft = false 6 | author = "admin" 7 | +++ 8 | 9 | Hi, There! 10 | -------------------------------------------------------------------------------- /layouts/shortcodes/youtube.html: -------------------------------------------------------------------------------- 1 |
7 | -------------------------------------------------------------------------------- /i18n/en.toml: -------------------------------------------------------------------------------- 1 | [about] 2 | other = "About" 3 | 4 | [contact] 5 | other = "Contact" 6 | 7 | [tags] 8 | other = "Tags" 9 | 10 | [search] 11 | other = "Search" 12 | 13 | [written] 14 | other = "Written by" 15 | 16 | [newer] 17 | other = "Newer" 18 | 19 | [older] 20 | other = "Older" 21 | -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- 1 | name = "pixyll" 2 | description = "A simple, beautiful theme for Hugo." 3 | author = "Dmitriy Slupytskyi" 4 | license = "MIT" 5 | source_repo = "https://github.com/azmelanar/hugo-theme-pixyll" 6 | tags = ["blog", "personal", "search", "responsive", "minimal"] 7 | min_version = 0.25 8 | -------------------------------------------------------------------------------- /i18n/ru.toml: -------------------------------------------------------------------------------- 1 | [about] 2 | other = "О нас" 3 | 4 | [contact] 5 | other = "Контакты" 6 | 7 | [tags] 8 | other = "Теги" 9 | 10 | [search] 11 | other = "Поиск" 12 | 13 | [written] 14 | other = "Написал" 15 | 16 | [newer] 17 | other = "Следующая" 18 | 19 | [older] 20 | other = "Предыдущая" 21 | -------------------------------------------------------------------------------- /layouts/partials/social_links.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- 1 |
9 | Error 404
10 |Tag: {{ .Title | lower }}
7 |