{{title}}
38 |{{excerpt words="28"}} ... {{t "read more"}}
39 | 44 |├── assets ├── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.ttf │ ├── fa-solid-900.eot │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ └── fa-solid-900.woff2 ├── scss │ ├── main.scss │ ├── _variables.scss │ ├── _vendors.scss │ ├── _pagination.scss │ ├── _loop.scss │ ├── _footer.scss │ ├── _share-selected-text.scss │ ├── _members.scss │ ├── _base.scss │ ├── _header.scss │ └── _post.scss ├── js │ ├── config.js │ └── main.js └── img │ └── x.svg ├── .gitignore ├── routes.yaml ├── LICENSE.md ├── partials ├── theme_head.hbs ├── navigation.hbs ├── pagination.hbs ├── loop-featured.hbs ├── theme_footer.hbs ├── loop.hbs └── theme_header.hbs ├── default.hbs ├── members ├── signin.hbs ├── account.hbs └── signup.hbs ├── index.hbs ├── tag.hbs ├── package.json ├── page.hbs ├── author.hbs ├── gulpfile.js ├── locales └── en.json ├── post.hbs └── amp.hbs /assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HauntedThemes/joelma/HEAD/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | b-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | npm-debug.log 15 | node_modules 16 | package-lock.json 17 | 18 | .DS_Store 19 | package-lock.json -------------------------------------------------------------------------------- /assets/scss/main.scss: -------------------------------------------------------------------------------- 1 | @import "_vendors"; 2 | @import "_variables"; 3 | @import "_base"; 4 | @import "_header"; 5 | @import "_post"; 6 | @import "_loop"; 7 | @import "_pagination"; 8 | @import "_share-selected-text"; 9 | @import "_members"; 10 | @import "_footer"; -------------------------------------------------------------------------------- /assets/js/config.js: -------------------------------------------------------------------------------- 1 | var config = { 2 | 'share-selected-text': true, 3 | 'load-more': false, 4 | 'infinite-scroll': false, 5 | 'infinite-scroll-step': 1, 6 | 'disqus-shortname': 'hauntedthemes-demo', 7 | 'content-api-host': '', 8 | 'content-api-key': '', 9 | }; -------------------------------------------------------------------------------- /routes.yaml: -------------------------------------------------------------------------------- 1 | routes: 2 | /signup/: members/signup 3 | /signin/: members/signin 4 | /account/: members/account 5 | 6 | collections: 7 | /: 8 | permalink: /{slug}/ 9 | template: index 10 | 11 | taxonomies: 12 | tag: /tag/{slug}/ 13 | author: /author/{slug}/ -------------------------------------------------------------------------------- /assets/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | $black: #000000; 2 | $white: #ffffff; 3 | $purple: #667EEA; 4 | $red: #ea6666; 5 | $grey-1: #A0A8BD; 6 | $grey-2: #54575d; 7 | $grey-3: #202226; 8 | $grey-4: #eceef2; 9 | 10 | $main_font: "sofia-pro", "Ubuntu", sans-serif; 11 | $icons_font: Font Awesome\ 5 Free; 12 | 13 | $extra_small: 575px; 14 | $small: 767px; 15 | $medium: 991px; 16 | $large: 1199px; -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Joelma - Writer Ghost Theme by Haunted Themes 2 | ============================ 3 | 4 | > Copyright (C) HauntedThemes SRL 5 | > https://www.hauntedthemes.com 6 | 7 | This theme is available as part of the HauntedThemes.com membership. 8 | The membership provides access to important theme updates and tech support, as well as the rest of our awesome Ghost Themes. 9 | 10 | All themes are released under the GNU Public License version 2.0. 11 | 12 | https://www.hauntedthemes.com/terms-of-service/ 13 | https://www.hauntedthemes.com/privacy-policy/ -------------------------------------------------------------------------------- /assets/scss/_vendors.scss: -------------------------------------------------------------------------------- 1 | @import "node_modules/bootstrap/scss/bootstrap"; 2 | @import "node_modules/highlight.js/scss/default"; 3 | @import "node_modules/@fortawesome/fontawesome-free/scss/fontawesome"; 4 | @import "node_modules/@fortawesome/fontawesome-free/scss/brands"; 5 | @import "node_modules/@fortawesome/fontawesome-free/scss/solid"; 6 | @import "node_modules/@fortawesome/fontawesome-free/scss/regular"; 7 | @import "node_modules/highlight.js/scss/default"; 8 | @import "node_modules/share-selected-text/dist/shareSelectedText.min"; 9 | @import "node_modules/swiper/css/swiper.min"; 10 | -------------------------------------------------------------------------------- /partials/theme_head.hbs: -------------------------------------------------------------------------------- 1 | {{!-- Document Settings --}} 2 | 3 | 4 | 5 | {{!-- Page Meta --}} 6 |
{{excerpt words="28"}} ... {{t "read more"}}
39 | 44 |{{{t "Hey! {email} has an active {title} account with access to all areas. You're all set, but if you need any help, get in touch with us and we'd be happy to help." email=@member.email title=@site.title}}}
18 |{{{t "Hey there! {email} is subscribed to free updates from {title}, but doesn't have a paid subscription to unlock full access." email=@member.email title=@site.title}}}
40 |{{excerpt words="28"}} ... {{t "read more"}}
20 | 34 | 35 |{{{t "Unlock full access to {title} and see the entire
library of members-only content & updates" title=@site.title}}}
{{excerpt words="28"}} ... {{t "read more"}}
556 | 561 |
{{t "Comments"}}
95 | 96 | {{t "Write a comment ..."}} 97 | 98 | 99 |