├── .editorconfig ├── .eslintrc.cjs ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── css │ ├── main.css │ └── main.min.css ├── hamlet.xml └── js │ ├── comments.js │ └── comments.min.js ├── package.json ├── src ├── js │ └── comments.bundle.js ├── scss │ ├── components │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _comments.scss │ │ ├── _footer.scss │ │ ├── _form.scss │ │ ├── _header.scss │ │ ├── _icons.scss │ │ ├── _message.scss │ │ ├── _pagination.scss │ │ ├── _posts.scss │ │ ├── _searchbox.scss │ │ ├── _sidebar.scss │ │ ├── _switch.scss │ │ └── _widgets.scss │ ├── elements │ │ └── _base.scss │ ├── generic │ │ ├── _overrides.scss │ │ └── _reset.scss │ ├── main.scss │ ├── objects │ │ ├── _container.scss │ │ └── _template.scss │ ├── settings │ │ ├── _root.scss │ │ └── _variables.scss │ └── utilities │ │ └── _text.scss └── templates │ ├── defaultmarkups │ ├── _defaultmarkups.hbs │ ├── components │ │ ├── _document.hbs │ │ ├── _head.hbs │ │ ├── _overrides.hbs │ │ ├── _postCard.hbs │ │ ├── _postComments.hbs │ │ ├── _postInlineAd.hbs │ │ ├── _postPagination.hbs │ │ └── _postView.hbs │ └── widgets │ │ ├── _AdSense.hbs │ │ ├── _Blog.hbs │ │ ├── _BlogArchive.hbs │ │ ├── _BlogList.hbs │ │ ├── _BlogSearch.hbs │ │ ├── _BloggerButton.hbs │ │ ├── _ContactForm.hbs │ │ ├── _FeaturedPost.hbs │ │ ├── _Feed.hbs │ │ ├── _HTML.hbs │ │ ├── _Header.hbs │ │ ├── _Image.hbs │ │ ├── _Label.hbs │ │ ├── _LinkList.hbs │ │ ├── _PageList.hbs │ │ ├── _PopularPosts.hbs │ │ ├── _Profile.hbs │ │ ├── _ReportAbuse.hbs │ │ ├── _Stats.hbs │ │ ├── _Text.hbs │ │ ├── _TextList.hbs │ │ ├── _Translate.hbs │ │ └── _Wikipedia.hbs │ ├── hamlet.hbs │ ├── layouts │ ├── _partial-footer.hbs │ ├── _partial-header.hbs │ ├── _partial-main.hbs │ └── _partial-offcanvas.hbs │ └── styles │ ├── _skin.hbs │ ├── _template-skin.hbs │ ├── customization │ ├── _Backgrounds.hbs │ ├── _Color.hbs │ ├── _Font.hbs │ └── _Hack.hbs │ └── preferences │ ├── _setting-admin.hbs │ ├── _setting-general.hbs │ └── _setting-text.hbs └── static ├── hamlet-builder.png ├── logo.png ├── pagespeed.web.png └── screenshot.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/README.md -------------------------------------------------------------------------------- /dist/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/dist/css/main.css -------------------------------------------------------------------------------- /dist/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/dist/css/main.min.css -------------------------------------------------------------------------------- /dist/hamlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/dist/hamlet.xml -------------------------------------------------------------------------------- /dist/js/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/dist/js/comments.js -------------------------------------------------------------------------------- /dist/js/comments.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/dist/js/comments.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/package.json -------------------------------------------------------------------------------- /src/js/comments.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/js/comments.bundle.js -------------------------------------------------------------------------------- /src/scss/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_buttons.scss -------------------------------------------------------------------------------- /src/scss/components/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_cards.scss -------------------------------------------------------------------------------- /src/scss/components/_comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_comments.scss -------------------------------------------------------------------------------- /src/scss/components/_footer.scss: -------------------------------------------------------------------------------- 1 | .footer { 2 | margin-top: 2.5rem; 3 | text-align: center; 4 | } 5 | -------------------------------------------------------------------------------- /src/scss/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_form.scss -------------------------------------------------------------------------------- /src/scss/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_header.scss -------------------------------------------------------------------------------- /src/scss/components/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_icons.scss -------------------------------------------------------------------------------- /src/scss/components/_message.scss: -------------------------------------------------------------------------------- 1 | .message { 2 | text-align: center; 3 | font-size: 1.25rem; 4 | } 5 | -------------------------------------------------------------------------------- /src/scss/components/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_pagination.scss -------------------------------------------------------------------------------- /src/scss/components/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_posts.scss -------------------------------------------------------------------------------- /src/scss/components/_searchbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_searchbox.scss -------------------------------------------------------------------------------- /src/scss/components/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_sidebar.scss -------------------------------------------------------------------------------- /src/scss/components/_switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_switch.scss -------------------------------------------------------------------------------- /src/scss/components/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/components/_widgets.scss -------------------------------------------------------------------------------- /src/scss/elements/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/elements/_base.scss -------------------------------------------------------------------------------- /src/scss/generic/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/generic/_overrides.scss -------------------------------------------------------------------------------- /src/scss/generic/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/generic/_reset.scss -------------------------------------------------------------------------------- /src/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/main.scss -------------------------------------------------------------------------------- /src/scss/objects/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/objects/_container.scss -------------------------------------------------------------------------------- /src/scss/objects/_template.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/objects/_template.scss -------------------------------------------------------------------------------- /src/scss/settings/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/settings/_root.scss -------------------------------------------------------------------------------- /src/scss/settings/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/settings/_variables.scss -------------------------------------------------------------------------------- /src/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/scss/utilities/_text.scss -------------------------------------------------------------------------------- /src/templates/defaultmarkups/_defaultmarkups.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/_defaultmarkups.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/components/_document.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/components/_document.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/components/_head.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/components/_head.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/components/_overrides.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/components/_overrides.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/components/_postCard.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/components/_postCard.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/components/_postComments.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/components/_postComments.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/components/_postInlineAd.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/components/_postInlineAd.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/components/_postPagination.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/components/_postPagination.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/components/_postView.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/components/_postView.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_AdSense.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_AdSense.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Blog.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Blog.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_BlogArchive.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_BlogArchive.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_BlogList.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_BlogList.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_BlogSearch.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_BlogSearch.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_BloggerButton.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_BloggerButton.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_ContactForm.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_ContactForm.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_FeaturedPost.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_FeaturedPost.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Feed.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Feed.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_HTML.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_HTML.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Header.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Image.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Image.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Label.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Label.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_LinkList.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_LinkList.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_PageList.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_PageList.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_PopularPosts.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_PopularPosts.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Profile.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Profile.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_ReportAbuse.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_ReportAbuse.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Stats.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Stats.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Text.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Text.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_TextList.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_TextList.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Translate.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Translate.hbs -------------------------------------------------------------------------------- /src/templates/defaultmarkups/widgets/_Wikipedia.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/defaultmarkups/widgets/_Wikipedia.hbs -------------------------------------------------------------------------------- /src/templates/hamlet.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/hamlet.hbs -------------------------------------------------------------------------------- /src/templates/layouts/_partial-footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/layouts/_partial-footer.hbs -------------------------------------------------------------------------------- /src/templates/layouts/_partial-header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/layouts/_partial-header.hbs -------------------------------------------------------------------------------- /src/templates/layouts/_partial-main.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/layouts/_partial-main.hbs -------------------------------------------------------------------------------- /src/templates/layouts/_partial-offcanvas.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/layouts/_partial-offcanvas.hbs -------------------------------------------------------------------------------- /src/templates/styles/_skin.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/styles/_skin.hbs -------------------------------------------------------------------------------- /src/templates/styles/_template-skin.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/styles/_template-skin.hbs -------------------------------------------------------------------------------- /src/templates/styles/customization/_Backgrounds.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/styles/customization/_Backgrounds.hbs -------------------------------------------------------------------------------- /src/templates/styles/customization/_Color.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/styles/customization/_Color.hbs -------------------------------------------------------------------------------- /src/templates/styles/customization/_Font.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/styles/customization/_Font.hbs -------------------------------------------------------------------------------- /src/templates/styles/customization/_Hack.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/styles/customization/_Hack.hbs -------------------------------------------------------------------------------- /src/templates/styles/preferences/_setting-admin.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/styles/preferences/_setting-admin.hbs -------------------------------------------------------------------------------- /src/templates/styles/preferences/_setting-general.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/styles/preferences/_setting-general.hbs -------------------------------------------------------------------------------- /src/templates/styles/preferences/_setting-text.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/src/templates/styles/preferences/_setting-text.hbs -------------------------------------------------------------------------------- /static/hamlet-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/static/hamlet-builder.png -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/static/logo.png -------------------------------------------------------------------------------- /static/pagespeed.web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/static/pagespeed.web.png -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/hamlet/HEAD/static/screenshot.png --------------------------------------------------------------------------------