├── themes ├── bubblegum │ ├── app.html │ ├── form.html │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-bubblegum.scss ├── charming │ ├── app.html │ ├── form.html │ ├── css │ │ ├── _forms.scss │ │ ├── _alerts.scss │ │ ├── _icons.scss │ │ ├── _type.scss │ │ ├── mixins │ │ │ ├── _colors.scss │ │ │ └── _mixins.scss │ │ ├── _utilities.scss │ │ ├── _functions.scss │ │ ├── bootstrap4-charming.scss │ │ ├── _buttons.scss │ │ ├── _variables.scss │ │ └── _colors.scss │ ├── data.json │ └── index.html ├── daydream │ ├── app.html │ ├── form.html │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-daydream.scss ├── good-news │ ├── app.html │ ├── form.html │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-good-news.scss ├── growth │ ├── app.html │ ├── form.html │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-growth.scss ├── harbor │ ├── app.html │ ├── form.html │ ├── images │ │ ├── bg-harbor.jpg │ │ └── bg-harbor@2x.jpg │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-harbor.scss ├── neon-glow │ ├── app.html │ ├── form.html │ ├── images │ │ └── ng-background-dot.png │ ├── data.json │ └── index.html ├── pleasant │ ├── app.html │ ├── form.html │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-pleasant.scss ├── retro │ ├── app.html │ ├── form.html │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-retro.scss ├── wizardry │ ├── app.html │ ├── form.html │ ├── images │ │ ├── bg-wizardry.jpg │ │ └── bg-wizardry@2x.jpg │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-wizardry.scss ├── hello-world │ ├── app.html │ ├── form.html │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-hello-world.scss ├── vibrant-sea │ ├── app.html │ ├── form.html │ ├── images │ │ ├── vs-cloud-1.png │ │ ├── vs-cloud-2.png │ │ ├── vs-fish-1.png │ │ ├── vs-cloud-1@2x.png │ │ ├── vs-cloud-2@2x.png │ │ ├── vs-fish-1@2x.png │ │ ├── vs-octopus-1.png │ │ └── vs-octopus-1@2x.png │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-vibrant-sea.scss ├── business-tycoon │ ├── app.html │ ├── form.html │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-business-tycoon.scss ├── executive-suite │ ├── app.html │ ├── form.html │ ├── images │ │ ├── executive-image.jpg │ │ └── executive-image@2x.jpg │ ├── data.json │ ├── index.html │ └── css │ │ └── bootstrap4-executive-suite.scss └── default │ └── data.json ├── .gitignore ├── dist ├── harbor │ ├── images │ │ ├── bg-harbor.jpg │ │ └── bg-harbor@2x.jpg │ ├── index.html │ └── app.html ├── vibrant-sea │ ├── images │ │ ├── vs-cloud-1.png │ │ ├── vs-cloud-2.png │ │ ├── vs-fish-1.png │ │ ├── vs-fish-1@2x.png │ │ ├── vs-octopus-1.png │ │ ├── vs-cloud-1@2x.png │ │ ├── vs-cloud-2@2x.png │ │ └── vs-octopus-1@2x.png │ └── index.html ├── wizardry │ ├── images │ │ ├── bg-wizardry.jpg │ │ └── bg-wizardry@2x.jpg │ ├── index.html │ └── app.html ├── neon-glow │ ├── images │ │ └── ng-background-dot.png │ └── index.html ├── executive-suite │ ├── images │ │ ├── executive-image.jpg │ │ └── executive-image@2x.jpg │ └── index.html ├── good-news │ ├── index.html │ └── app.html ├── business-tycoon │ └── index.html ├── bubblegum │ ├── index.html │ └── app.html ├── daydream │ ├── index.html │ └── app.html ├── pleasant │ ├── index.html │ └── app.html ├── retro │ ├── index.html │ └── app.html ├── hello-world │ └── index.html ├── growth │ ├── index.html │ └── app.html └── charming │ ├── index.html │ └── app.html ├── html ├── _layouts │ ├── app.html │ ├── form.html │ ├── index.html │ └── base.html └── _includes │ ├── app.html │ └── form.html ├── scsslint.yml ├── scss └── _common-utils.scss ├── package.json ├── LICENSE ├── readme.md └── gulpfile.js /themes/bubblegum/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/charming/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/daydream/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/good-news/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/growth/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/growth/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/harbor/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/harbor/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/neon-glow/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/pleasant/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/retro/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/retro/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/wizardry/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/bubblegum/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/charming/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/daydream/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/good-news/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/hello-world/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/hello-world/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/neon-glow/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/pleasant/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/vibrant-sea/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/vibrant-sea/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/wizardry/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/business-tycoon/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/business-tycoon/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /themes/executive-suite/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/app.html" %} 2 | -------------------------------------------------------------------------------- /themes/executive-suite/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/form.html" %} 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | node_modules/ 5 | .idea/workspace.xml 6 | .idea/tasks.xml 7 | -------------------------------------------------------------------------------- /dist/harbor/images/bg-harbor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/harbor/images/bg-harbor.jpg -------------------------------------------------------------------------------- /dist/harbor/images/bg-harbor@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/harbor/images/bg-harbor@2x.jpg -------------------------------------------------------------------------------- /themes/harbor/images/bg-harbor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/harbor/images/bg-harbor.jpg -------------------------------------------------------------------------------- /dist/vibrant-sea/images/vs-cloud-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/vibrant-sea/images/vs-cloud-1.png -------------------------------------------------------------------------------- /dist/vibrant-sea/images/vs-cloud-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/vibrant-sea/images/vs-cloud-2.png -------------------------------------------------------------------------------- /dist/vibrant-sea/images/vs-fish-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/vibrant-sea/images/vs-fish-1.png -------------------------------------------------------------------------------- /dist/wizardry/images/bg-wizardry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/wizardry/images/bg-wizardry.jpg -------------------------------------------------------------------------------- /themes/harbor/images/bg-harbor@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/harbor/images/bg-harbor@2x.jpg -------------------------------------------------------------------------------- /themes/wizardry/images/bg-wizardry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/wizardry/images/bg-wizardry.jpg -------------------------------------------------------------------------------- /dist/vibrant-sea/images/vs-fish-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/vibrant-sea/images/vs-fish-1@2x.png -------------------------------------------------------------------------------- /dist/vibrant-sea/images/vs-octopus-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/vibrant-sea/images/vs-octopus-1.png -------------------------------------------------------------------------------- /dist/wizardry/images/bg-wizardry@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/wizardry/images/bg-wizardry@2x.jpg -------------------------------------------------------------------------------- /themes/vibrant-sea/images/vs-cloud-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/vibrant-sea/images/vs-cloud-1.png -------------------------------------------------------------------------------- /themes/vibrant-sea/images/vs-cloud-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/vibrant-sea/images/vs-cloud-2.png -------------------------------------------------------------------------------- /themes/vibrant-sea/images/vs-fish-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/vibrant-sea/images/vs-fish-1.png -------------------------------------------------------------------------------- /dist/neon-glow/images/ng-background-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/neon-glow/images/ng-background-dot.png -------------------------------------------------------------------------------- /dist/vibrant-sea/images/vs-cloud-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/vibrant-sea/images/vs-cloud-1@2x.png -------------------------------------------------------------------------------- /dist/vibrant-sea/images/vs-cloud-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/vibrant-sea/images/vs-cloud-2@2x.png -------------------------------------------------------------------------------- /dist/vibrant-sea/images/vs-octopus-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/vibrant-sea/images/vs-octopus-1@2x.png -------------------------------------------------------------------------------- /themes/vibrant-sea/images/vs-cloud-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/vibrant-sea/images/vs-cloud-1@2x.png -------------------------------------------------------------------------------- /themes/vibrant-sea/images/vs-cloud-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/vibrant-sea/images/vs-cloud-2@2x.png -------------------------------------------------------------------------------- /themes/vibrant-sea/images/vs-fish-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/vibrant-sea/images/vs-fish-1@2x.png -------------------------------------------------------------------------------- /themes/vibrant-sea/images/vs-octopus-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/vibrant-sea/images/vs-octopus-1.png -------------------------------------------------------------------------------- /themes/wizardry/images/bg-wizardry@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/wizardry/images/bg-wizardry@2x.jpg -------------------------------------------------------------------------------- /themes/neon-glow/images/ng-background-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/neon-glow/images/ng-background-dot.png -------------------------------------------------------------------------------- /themes/vibrant-sea/images/vs-octopus-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/vibrant-sea/images/vs-octopus-1@2x.png -------------------------------------------------------------------------------- /dist/executive-suite/images/executive-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/executive-suite/images/executive-image.jpg -------------------------------------------------------------------------------- /html/_layouts/app.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/base.html" %} 2 | 3 | {% block content %} 4 | {% include "html/_includes/app.html" %} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /dist/executive-suite/images/executive-image@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/dist/executive-suite/images/executive-image@2x.jpg -------------------------------------------------------------------------------- /html/_layouts/form.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/base.html" %} 2 | 3 | {% block content %} 4 | {% include "html/_includes/form.html" %} 5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /themes/executive-suite/images/executive-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/executive-suite/images/executive-image.jpg -------------------------------------------------------------------------------- /themes/executive-suite/images/executive-image@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerThemes/theme-machine/HEAD/themes/executive-suite/images/executive-image@2x.jpg -------------------------------------------------------------------------------- /themes/charming/css/_forms.scss: -------------------------------------------------------------------------------- 1 | //Forms 2 | .charming-form-input { 3 | background-color: $charming-form-input-bg; 4 | border-width: 3px; 5 | } 6 | 7 | .form-control-lg { 8 | font-size: 1rem; 9 | } 10 | -------------------------------------------------------------------------------- /themes/default/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Bootstrap Buffet", 3 | "bodyClass" : "ht-tm-default-theme", 4 | "excerpt" : "A visual overview of the default Bootstrap theme. With an interactive code picker and inspector." 5 | } 6 | -------------------------------------------------------------------------------- /themes/charming/css/_alerts.scss: -------------------------------------------------------------------------------- 1 | // Regenerate alerts 2 | @each $color, $value in $theme-colors { 3 | .alert-#{$color} { 4 | @include alert-variant(theme-color-level($color, -5), theme-color-level($color, -2), theme-color-level($color, 7)); 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /themes/charming/css/_icons.scss: -------------------------------------------------------------------------------- 1 | // Icons 2 | 3 | .icon { 4 | //standard icon size 5 | font-size: 28px; 6 | margin: 0 5px; 7 | } 8 | 9 | .icon-sm { 10 | font-size: 20px; 11 | } 12 | 13 | .icon-xs { 14 | font-size: 16px; 15 | } 16 | 17 | .icon-lg { 18 | font-size: 42px; 19 | } 20 | 21 | .icon-xl { 22 | font-size: 72px; 23 | } 24 | -------------------------------------------------------------------------------- /scsslint.yml: -------------------------------------------------------------------------------- 1 | exclude: '_pygments.scss' 2 | 3 | linters: 4 | Indentation: 5 | width: 2 6 | #Comment: 7 | #allowed: '[\s\S]*' 8 | NestingDepth: 9 | max_depth: 5 10 | NameFormat: 11 | enabled: false 12 | Comment: 13 | enabled: false 14 | ColorVariable: 15 | enabled: false 16 | ImportantRule: 17 | enabled: false 18 | -------------------------------------------------------------------------------- /themes/growth/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Growth", 3 | "navbarClass" : "bg-dark navbar-dark text-white", 4 | "navbarLinkClass" : "text-light", 5 | "downloadButtonClass" : "btn-secondary", 6 | "folder" : "growth/", 7 | "css" : "css/bootstrap4-growth.min.css", 8 | "excerpt" : "An open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Raleway", 10 | "filename" : "hackerthemes-growth.zip", 11 | "dbId" : "92" 12 | } 13 | -------------------------------------------------------------------------------- /themes/harbor/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Harbor", 3 | "navbarClass" : "bg-info navbar-dark text-white", 4 | "navbarLinkClass" : "text-light", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "harbor/", 7 | "css" : "css/bootstrap4-harbor.min.css", 8 | "excerpt" : "An open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Oswald|Raleway", 10 | "filename" : "hackerthemes-harbor.zip", 11 | "dbId" : "93" 12 | } 13 | -------------------------------------------------------------------------------- /themes/retro/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Retro", 3 | "navbarClass" : "bg-danger navbar-dark text-white", 4 | "navbarLinkClass" : "text-white", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "retro/", 7 | "css" : "css/bootstrap4-retro.min.css", 8 | "excerpt" : "An open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Montserrat|Shrikhand", 10 | "filename" : "hackerthemes-retro.zip", 11 | "dbId" : "97" 12 | } 13 | -------------------------------------------------------------------------------- /themes/charming/css/_type.scss: -------------------------------------------------------------------------------- 1 | // Type 2 | 3 | h6, 4 | .h6 { font-weight: bold; } 5 | 6 | h1, 7 | .h1 { line-height: 1.384615385; } // 54px 8 | 9 | h2, 10 | .h2 { line-height: 1.35483871; } // 42px 11 | h3, 12 | .h3 { line-height: 1.44; } // 36px 13 | 14 | h4, 15 | .h4, 16 | h5, 17 | .h5, 18 | h6, 19 | .h6 { line-height: 1.5; } 20 | 21 | p { 22 | margin-bottom: $spacer * .75; 23 | } 24 | 25 | // Text utilities 0 26 | .text-soft { 27 | color: $body-color-soft; 28 | } 29 | -------------------------------------------------------------------------------- /themes/pleasant/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Pleasant", 3 | "navbarClass" : "bg-primary navbar-dark text-white", 4 | "navbarLinkClass" : "text-light", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "pleasant/", 7 | "css" : "css/bootstrap4-pleasant.min.css", 8 | "excerpt" : "An open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Open+Sans|Ubuntu", 10 | "filename" : "hackerthemes-pleasant.zip", 11 | "dbId" : "96" 12 | } 13 | -------------------------------------------------------------------------------- /themes/wizardry/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Wizardry", 3 | "navbarClass" : "bg-dark navbar-dark text-white", 4 | "navbarLinkClass" : "text-white", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "wizardry/", 7 | "css" : "css/bootstrap4-wizardry.min.css", 8 | "excerpt" : "An open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Comfortaa|Roboto:300,400", 10 | "filename" : "hackerthemes-wizardry.zip", 11 | "dbId" : "99" 12 | } 13 | -------------------------------------------------------------------------------- /themes/charming/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Charming", 3 | "navbarClass" : "bg-accent-2 text-white navbar-dark", 4 | "navbarLinkClass" : "text-white", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "charming/", 7 | "css" : "css/bootstrap4-charming.min.css", 8 | "excerpt" : "A charming Bootstrap theme", 9 | "font" : "https://fonts.googleapis.com/css?family=Lato:400,900,700,400italic", 10 | "filename" : "hackerthemes-charming.zip", 11 | "dbId" : "88" 12 | } 13 | -------------------------------------------------------------------------------- /themes/good-news/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Good News", 3 | "navbarClass" : "bg-light", 4 | "navbarLinkClass" : "text-dark", 5 | "downloadButtonClass" : "btn-outline-dark", 6 | "folder" : "good-news/", 7 | "css" : "css/bootstrap4-good-news.min.css", 8 | "excerpt" : "A subtle open source Bootstrap theme focused on typography.", 9 | "font" : "https://fonts.googleapis.com/css?family=Open+Sans|PT+Serif", 10 | "filename" : "hackerthemes-good-news.zip", 11 | "dbId" : "91" 12 | } 13 | -------------------------------------------------------------------------------- /themes/charming/css/mixins/_colors.scss: -------------------------------------------------------------------------------- 1 | @mixin bg-gradient($gstart, $gstop) { 2 | background: linear-gradient(to right, $gstart, $gstop); 3 | background-color: mix($gstart, $gstop); 4 | } 5 | 6 | @mixin bg-gradient-vertical($gstart, $gstop) { 7 | background: linear-gradient(to bottom, $gstart, $gstop); 8 | background-color: mix($gstart, $gstop); 9 | } 10 | 11 | @mixin bg-color($color) { 12 | background: $color; 13 | } 14 | 15 | @mixin text-color($color) { 16 | color: $color; 17 | } 18 | -------------------------------------------------------------------------------- /themes/bubblegum/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Bubblegum", 3 | "navbarClass" : "bg-danger text-white navbar-dark", 4 | "navbarLinkClass" : "text-white", 5 | "downloadButtonClass" : "btn-light text-danger", 6 | "folder" : "bubblegum/", 7 | "css" : "css/bootstrap4-bubblegum.min.css", 8 | "excerpt" : "A playful and open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Chicle|Open+Sans", 10 | "filename" : "hackerthemes-bubblegum.zip", 11 | "dbId" : "86" 12 | } 13 | -------------------------------------------------------------------------------- /themes/hello-world/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Hello World", 3 | "navbarClass" : "bg-dark navbar-dark text-white", 4 | "navbarLinkClass" : "text-light", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "hello-world/", 7 | "css" : "css/bootstrap4-hello-world.min.css", 8 | "excerpt" : "An open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Fredoka+One|Roboto:300,400", 10 | "filename" : "hackerthemes-hello-world.zip", 11 | "dbId" : "94" 12 | } 13 | -------------------------------------------------------------------------------- /themes/daydream/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Daydream", 3 | "navbarClass" : "bg-primary text-white navbar-dark", 4 | "navbarLinkClass" : "text-white", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "daydream/", 7 | "css" : "css/bootstrap4-daydream.min.css", 8 | "excerpt" : "A playful and open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Open+Sans|Oswald|Shadows+Into+Light", 10 | "filename" : "hackerthemes-daydream.zip", 11 | "dbId" : "89" 12 | } 13 | -------------------------------------------------------------------------------- /themes/vibrant-sea/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Vibrant Sea", 3 | "navbarClass" : "bg-primary navbar-dark text-white", 4 | "navbarLinkClass" : "text-white", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "vibrant-sea/", 7 | "css" : "css/bootstrap4-vibrant-sea.min.css", 8 | "excerpt" : "An open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Oswald:300,400|Roboto:400,700", 10 | "filename" : "hackerthemes-vibrant-sea.zip", 11 | "dbId" : "98" 12 | } 13 | -------------------------------------------------------------------------------- /themes/business-tycoon/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Business Tycoon", 3 | "navbarClass" : "bg-dark text-white navbar-dark", 4 | "navbarLinkClass" : "text-white", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "business-tycoon/", 7 | "css" : "css/bootstrap4-business-tycoon.min.css", 8 | "excerpt" : "A Bootstrap theme with a professional look. ", 9 | "font" : "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400", 10 | "filename" : "hackerthemes-business-tycoon.zip", 11 | "dbId" : "87" 12 | } 13 | -------------------------------------------------------------------------------- /themes/charming/css/_utilities.scss: -------------------------------------------------------------------------------- 1 | .img-simple-border { 2 | border: 1px $img-simple-border solid; 3 | } 4 | 5 | .icon-with-label { 6 | align-items: center; 7 | display: inline-flex; 8 | flex-flow: row nowrap; 9 | margin-right: $spacer * 1.5; 10 | } 11 | 12 | .icon-with-label-text { 13 | line-height: 20px; 14 | margin-left: $spacer / 2.66; 15 | margin-top: -2px; 16 | } 17 | 18 | .link-soft { 19 | color: $body-color; 20 | 21 | &:hover, 22 | &:focus, 23 | &:active { 24 | color: $body-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /themes/executive-suite/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Executive Suite", 3 | "navbarClass" : "bg-dark navbar-dark text-white", 4 | "navbarLinkClass" : "text-white", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "executive-suite/", 7 | "css" : "css/bootstrap4-executive-suite.min.css", 8 | "excerpt" : "An exquisite and open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Merriweather|Oswald|Source+Sans+Pro", 10 | "filename" : "hackerthemes-executive-suite.zip", 11 | "dbId" : "90" 12 | } 13 | -------------------------------------------------------------------------------- /themes/neon-glow/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Neon Glow", 3 | "navbarClass" : "navbar-dark text-white", 4 | "navbarLinkClass" : "text-light", 5 | "downloadButtonClass" : "btn-outline-light", 6 | "folder" : "neon-glow/", 7 | "css" : "css/bootstrap4-neon-glow.min.css", 8 | "excerpt" : "An open source Bootstrap theme.", 9 | "font" : "https://fonts.googleapis.com/css?family=Roboto", 10 | "filename" : "hackerthemes-neon-glow.zip", 11 | "nonGoogleFont" : "", 12 | "isDark" : true, 13 | "dbId" : "95" 14 | } 15 | -------------------------------------------------------------------------------- /themes/charming/css/_functions.scss: -------------------------------------------------------------------------------- 1 | // function to retrieve colors from maps 2 | @function multi-map-get($map, $list...) { 3 | @each $key in $list { 4 | $map: map-get($map, $key); 5 | } 6 | @return $map; // Our value 7 | } 8 | 9 | @function gradient($number: 1, $value: 'gstart') { 10 | // a wrapper around map-get for the $gradients array 11 | @return multi-map-get($gradients, $number, $value); 12 | } 13 | 14 | @function get-color($name: "primary", $value: 'color') { 15 | // a wrapper around map-get for the $theme-colors-extended array 16 | @return multi-map-get($theme-colors-extended, $name, $value); 17 | } 18 | -------------------------------------------------------------------------------- /themes/charming/css/bootstrap4-charming.scss: -------------------------------------------------------------------------------- 1 | /*! Bootstrap 4 "Charming" Theme by HackerThemes, https://hackerthemes.com */ 2 | 3 | @import 'functions'; // map-get 4 | @import 'colors'; 5 | @import 'variables'; 6 | 7 | // Bootstrap variables end: Import Bootstrap 8 | @import '../../../node_modules/bootstrap/scss/bootstrap'; 9 | @import '../../../scss/common-utils'; 10 | 11 | 12 | // Customized Bootstrap 13 | @import 'alerts'; 14 | 15 | 16 | // Charming stuff 17 | @import 'mixins/mixins'; 18 | @import 'mixins/colors'; 19 | 20 | @import 'buttons'; 21 | @import 'forms'; 22 | @import 'icons'; 23 | @import 'type'; 24 | @import 'utilities'; 25 | -------------------------------------------------------------------------------- /themes/good-news/index.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/index.html" %} 2 | 3 | {% block jumbotron %} 4 |
9 | This is a minimal Bootstrap Starter template. 10 |
11 | 12 | Default Button 13 | 14 | Outline Button 15 |Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
23 | https://github.com/HackerThemes/theme-machine
There is a pro version available which adds new components, a number of page layouts and 27 | more color palettes: 28 | Check out Charming Pro 30 |
31 | {% endblock %} 32 | -------------------------------------------------------------------------------- /themes/bubblegum/css/bootstrap4-bubblegum.scss: -------------------------------------------------------------------------------- 1 | /*! Bootstrap 4 "Bubblegum" Theme by HackerThemes, https://hackerthemes.com */ 2 | 3 | $primary: #3e5af1; 4 | $secondary: #3eaff1; 5 | $success: #3ef169; 6 | $info: #3ef1e8; 7 | $warning: #f1d53e; 8 | $danger: #f13e5a; 9 | $dark: #363636; 10 | $light: #fff; 11 | 12 | $font-family-sans-serif: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; //BS 13 | $border-radius: 10px; 14 | $border-radius-lg: 10px; 15 | $border-radius-sm: 10px; 16 | 17 | @import '../../../node_modules/bootstrap/scss/bootstrap'; 18 | @import '../../../scss/common-utils'; 19 | 20 | .text-chicle { 21 | font-family: 'Chicle', cursive; 22 | } 23 | 24 | .text-sans { 25 | font-family: $font-family-sans-serif; 26 | } 27 | 28 | .lead { 29 | font-size: 30px; 30 | 31 | @include media-breakpoint-down(xs) { 32 | font-size: 20px; 33 | } 34 | } 35 | 36 | .display-1 { 37 | font-size: 150px; 38 | 39 | @include media-breakpoint-down(xs) { 40 | font-size: 70px; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /themes/growth/css/bootstrap4-growth.scss: -------------------------------------------------------------------------------- 1 | /*! Bootstrap 4 "Growth" Theme by HackerThemes, https://hackerthemes.com */ 2 | 3 | $primary: #5371fb; 4 | $secondary: #fb8f53; 5 | $success: #53fb70; 6 | $info: #53b1fb; 7 | $warning: #ecfb53; 8 | $danger: #fb536d; 9 | $dark: #373193; 10 | $light: #fff; 11 | 12 | $font-family-sans-serif: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default; //BS 13 | 14 | @import '../../../node_modules/bootstrap/scss/bootstrap'; 15 | @import '../../../scss/common-utils'; 16 | 17 | .jumbotron-fullheight { 18 | min-height: 100vh; 19 | padding-top: 112px; 20 | } 21 | 22 | .bg-growth { 23 | background: url('../images/bg-growth.svg'); 24 | background-position: bottom; 25 | background-repeat: no-repeat; 26 | background-size: 100%; 27 | 28 | @media all and (-ms-high-contrast:none) { 29 | background-image: none; 30 | } 31 | } 32 | 33 | .btn-secondary { 34 | color: #fff; 35 | } 36 | 37 | .display-1 { 38 | @include media-breakpoint-down(sm) { 39 | font-size: 4rem; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Alexander Rechsteiner, HackerThemes 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /themes/good-news/css/bootstrap4-good-news.scss: -------------------------------------------------------------------------------- 1 | /*! Bootstrap 4 "Good News" Theme by HackerThemes, https://hackerthemes.com */ 2 | 3 | $primary: #a4c5fc; 4 | $secondary: #85d2e0; 5 | $success: #acfca4; 6 | $info: #c3a4fc; 7 | $warning: #fce4a4; 8 | $danger: #fca5a4; 9 | $dark: #454545; 10 | $light: #d9d9d9; 11 | 12 | $border-radius: 10px !default; 13 | $border-radius-sm: 10px !default; 14 | $border-radius-lg: 10px !default; 15 | 16 | $font-family-sans-serif: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default; //BS 17 | 18 | $body-color: $dark; 19 | 20 | @import '../../../node_modules/bootstrap/scss/bootstrap'; 21 | @import '../../../scss/common-utils'; 22 | 23 | .display-1, 24 | .display-2, 25 | .display-3, 26 | .display-4 { 27 | font-family: "PT Serif", serif; 28 | } 29 | 30 | .lead { 31 | font-size: 23px; 32 | } 33 | 34 | @each $color, $value in $theme-colors { 35 | .btn-#{$color} { 36 | border-color: theme-color-level($color, 1); 37 | } 38 | 39 | .alert-#{$color} { 40 | border-color: theme-color-level($color, 2); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /themes/hello-world/css/bootstrap4-hello-world.scss: -------------------------------------------------------------------------------- 1 | /*! Bootstrap 4 "Hello World" Theme by HackerThemes, https://hackerthemes.com */ 2 | 3 | $primary: #5692f6; 4 | $secondary: #56f6b7; 5 | $success: #72fa72; 6 | $info: #66bfed; 7 | $warning: #f4a554; 8 | $danger: #f65683; 9 | $dark: #39348d; 10 | $light: #c6c4e7; 11 | 12 | $border-radius: 10px !default; 13 | $border-radius-sm: 10px !default; 14 | $border-radius-lg: 10px !default; 15 | 16 | $font-family-sans-serif: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default; //BS 17 | 18 | @import '../../../node_modules/bootstrap/scss/bootstrap'; 19 | @import '../../../scss/common-utils'; 20 | 21 | .jumbotron-fullheight { 22 | height: 100vh; 23 | } 24 | 25 | .jumbo-vertical-center { 26 | align-items: center; 27 | display: flex; 28 | flex-direction: row; 29 | } 30 | 31 | .display-1, 32 | .display-2, 33 | .display-3, 34 | .display-4 { 35 | font-family: "Fredoka One", cursive; 36 | letter-spacing: .06em; 37 | } 38 | 39 | .lead, 40 | .lead-lg { 41 | font-weight: 300; 42 | letter-spacing: .06em; 43 | } 44 | -------------------------------------------------------------------------------- /themes/wizardry/css/bootstrap4-wizardry.scss: -------------------------------------------------------------------------------- 1 | /*! Bootstrap 4 "Wizardry" Theme by HackerThemes, https://hackerthemes.com */ 2 | 3 | $primary: #0085ff; 4 | $secondary: #99abc9; 5 | $success: #3ac84c; 6 | $info: #8568d2; 7 | $warning: #ff8e00; 8 | $danger: #f43535; 9 | $dark: #22232d; 10 | $light: #d6dce6; 11 | 12 | $font-family-sans-serif: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default; //BS 13 | 14 | @import '../../../node_modules/bootstrap/scss/bootstrap'; 15 | @import '../../../scss/common-utils'; 16 | 17 | .display-1, 18 | .display-2, 19 | .display-3, 20 | .display-4 { 21 | font-family: "Comfortaa", cursive; 22 | } 23 | 24 | .display-icon { 25 | display: inline-block; 26 | font-size: 32px; 27 | padding-top: 10px; 28 | vertical-align: top; 29 | 30 | @include media-breakpoint-down(sm) { 31 | font-size: 20px; 32 | } 33 | } 34 | 35 | .btn-warning { 36 | color: #d5dce6; 37 | } 38 | 39 | .bg-wizardry { 40 | background: url('../images/bg-wizardry.jpg'); 41 | } 42 | 43 | .display-1 { 44 | @include media-breakpoint-down(sm) { 45 | font-size: 3rem; 46 | } 47 | } 48 | 49 | -------------------------------------------------------------------------------- /themes/business-tycoon/css/bootstrap4-business-tycoon.scss: -------------------------------------------------------------------------------- 1 | /*! Bootstrap 4 "Business Tycoon" Theme by HackerThemes, https://hackerthemes.com */ 2 | 3 | $primary: #266cd8; 4 | $secondary: #48d3e3; 5 | $success: #29c272; 6 | $info: #6c9ce6; 7 | $warning: #e1954c; 8 | $danger: #d33; 9 | $dark: #0b1a31; 10 | $light: #bfcfd9; 11 | 12 | $border-radius: 0 !default; 13 | $border-radius-sm: 0 !default; 14 | $border-radius-lg: 0 !default; 15 | 16 | $body-color: #171717 !default; 17 | $font-family-sans-serif: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !default; //BS 18 | 19 | $code-color: #1265ba; 20 | $code-bg: #bdd3f3; 21 | 22 | $display1-weight: 400; 23 | $display2-weight: 400; 24 | $display3-weight: 400; 25 | $display4-weight: 400; 26 | 27 | // Bootstrap variables end: Import Bootstrap 28 | 29 | @import '../../../node_modules/bootstrap/scss/bootstrap'; 30 | @import '../../../scss/common-utils'; 31 | 32 | // Custom overrides 33 | 34 | .lead { 35 | font-size: 1.15em; 36 | } 37 | 38 | .btn-outline-light { 39 | &:hover { 40 | background-color: rgba(255, 255, 255, .2); 41 | color: $light; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /themes/charming/css/mixins/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin bevel($dark: true, 2 | $has-bottom: true, 3 | $bottom-strength: -1px 4 | ) { 5 | // Generates the three or one shadows for "rounded materials": 6 | // One on top, one on bottom and one in the back 7 | 8 | // $dark: use 'false' if using on a bright material 9 | // $has-bottom: use 'false' if no bottom shadows are needed 10 | // $bottom-strenght: vary the size of the bottom shadow 11 | 12 | $inset-top-color: rgba(255, 255, 255, .30); //0.16 13 | $inset-bottom-color: rgba(39, 39, 39, .22); //0.14 14 | $drop-color:rgba(0, 0, 0, .22); //0.22 15 | 16 | @if not($dark) { // for bright buttons 17 | $inset-top-color: rgba(255, 255, 255, .8); 18 | $inset-bottom-color: rgba(39, 39, 39, .10); 19 | $drop-color: rgba(0, 0, 0, .05); 20 | } 21 | 22 | 23 | @if ($has-bottom) { 24 | box-shadow: inset 0 1px 0 0 $inset-top-color, 25 | inset 0 $bottom-strength 0 0 $inset-bottom-color, 26 | 0 1px 3px 0 $drop-color; 27 | } @else { 28 | box-shadow: inset 0 1px 0 0 $inset-top-color; 29 | } 30 | } 31 | 32 | @mixin button-bevel() { 33 | @include bevel(); 34 | text-shadow: 1px 1px 0 $colored-button-text-shadow; 35 | 36 | &.btn-lg { 37 | @include bevel($bottom-strength: -2px); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /themes/executive-suite/index.html: -------------------------------------------------------------------------------- 1 | {% extends "html/_layouts/index.html" %} 2 | 3 | {% block jumbotron %} 4 |
13 |
14 | 25 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Architecto, dignissimos provident. Alias, aliquid, cum cumque deleniti dignissimos eos exercitationem explicabo illum inventore laboriosam nihil nobis nostrum praesentium recusandae sequi, sint! 26 |
27 |35 | Some quick example text to build on the card title 36 | and make up the bulk of the card's content. 37 |
38 | 39 || # | 48 |Item | 49 |Actions | 50 |
|---|---|---|
| {{i}} | 56 |57 | 58 | Some item on your list 59 | 60 | | 61 |62 | 63 | 64 | Edit 65 | 66 | 67 | Delete 68 | | 69 |
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
66 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
64 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
67 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
66 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
66 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
69 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
68 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
66 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
70 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
71 | https://github.com/HackerThemes/theme-machine
Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
66 | https://github.com/HackerThemes/theme-machine
There is a pro version available which adds new components, a number of page layouts and 70 | more color palettes: 71 | Check out Charming Pro 73 |
74 | 75 |Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
69 | https://github.com/HackerThemes/theme-machine
50 |
51 | Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
82 | https://github.com/HackerThemes/theme-machine
62 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Architecto, dignissimos provident. Alias, aliquid, cum cumque deleniti dignissimos eos exercitationem explicabo illum inventore laboriosam nihil nobis nostrum praesentium recusandae sequi, sint! 63 |
64 |Thank you for downloading this theme. If you have trouble or find a bug, please open an issue on GitHub:
75 | https://github.com/HackerThemes/theme-machine
74 | Some quick example text to build on the card title 75 | and make up the bulk of the card's content. 76 |
77 | 78 || # | 87 |Item | 88 |Actions | 89 |
|---|---|---|
| 1 | 95 |96 | 97 | Some item on your list 98 | 99 | | 100 |101 | 102 | 103 | Edit 104 | 105 | 106 | Delete 107 | | 108 |
| 2 | 112 |113 | 114 | Some item on your list 115 | 116 | | 117 |118 | 119 | 120 | Edit 121 | 122 | 123 | Delete 124 | | 125 |
| 3 | 129 |130 | 131 | Some item on your list 132 | 133 | | 134 |135 | 136 | 137 | Edit 138 | 139 | 140 | Delete 141 | | 142 |
| 4 | 146 |147 | 148 | Some item on your list 149 | 150 | | 151 |152 | 153 | 154 | Edit 155 | 156 | 157 | Delete 158 | | 159 |
| 5 | 163 |164 | 165 | Some item on your list 166 | 167 | | 168 |169 | 170 | 171 | Edit 172 | 173 | 174 | Delete 175 | | 176 |
| 6 | 180 |181 | 182 | Some item on your list 183 | 184 | | 185 |186 | 187 | 188 | Edit 189 | 190 | 191 | Delete 192 | | 193 |
| 7 | 197 |198 | 199 | Some item on your list 200 | 201 | | 202 |203 | 204 | 205 | Edit 206 | 207 | 208 | Delete 209 | | 210 |
| 8 | 214 |215 | 216 | Some item on your list 217 | 218 | | 219 |220 | 221 | 222 | Edit 223 | 224 | 225 | Delete 226 | | 227 |
| 9 | 231 |232 | 233 | Some item on your list 234 | 235 | | 236 |237 | 238 | 239 | Edit 240 | 241 | 242 | Delete 243 | | 244 |
74 | Some quick example text to build on the card title 75 | and make up the bulk of the card's content. 76 |
77 | 78 || # | 87 |Item | 88 |Actions | 89 |
|---|---|---|
| 1 | 95 |96 | 97 | Some item on your list 98 | 99 | | 100 |101 | 102 | 103 | Edit 104 | 105 | 106 | Delete 107 | | 108 |
| 2 | 112 |113 | 114 | Some item on your list 115 | 116 | | 117 |118 | 119 | 120 | Edit 121 | 122 | 123 | Delete 124 | | 125 |
| 3 | 129 |130 | 131 | Some item on your list 132 | 133 | | 134 |135 | 136 | 137 | Edit 138 | 139 | 140 | Delete 141 | | 142 |
| 4 | 146 |147 | 148 | Some item on your list 149 | 150 | | 151 |152 | 153 | 154 | Edit 155 | 156 | 157 | Delete 158 | | 159 |
| 5 | 163 |164 | 165 | Some item on your list 166 | 167 | | 168 |169 | 170 | 171 | Edit 172 | 173 | 174 | Delete 175 | | 176 |
| 6 | 180 |181 | 182 | Some item on your list 183 | 184 | | 185 |186 | 187 | 188 | Edit 189 | 190 | 191 | Delete 192 | | 193 |
| 7 | 197 |198 | 199 | Some item on your list 200 | 201 | | 202 |203 | 204 | 205 | Edit 206 | 207 | 208 | Delete 209 | | 210 |
| 8 | 214 |215 | 216 | Some item on your list 217 | 218 | | 219 |220 | 221 | 222 | Edit 223 | 224 | 225 | Delete 226 | | 227 |
| 9 | 231 |232 | 233 | Some item on your list 234 | 235 | | 236 |237 | 238 | 239 | Edit 240 | 241 | 242 | Delete 243 | | 244 |
74 | Some quick example text to build on the card title 75 | and make up the bulk of the card's content. 76 |
77 | 78 || # | 87 |Item | 88 |Actions | 89 |
|---|---|---|
| 1 | 95 |96 | 97 | Some item on your list 98 | 99 | | 100 |101 | 102 | 103 | Edit 104 | 105 | 106 | Delete 107 | | 108 |
| 2 | 112 |113 | 114 | Some item on your list 115 | 116 | | 117 |118 | 119 | 120 | Edit 121 | 122 | 123 | Delete 124 | | 125 |
| 3 | 129 |130 | 131 | Some item on your list 132 | 133 | | 134 |135 | 136 | 137 | Edit 138 | 139 | 140 | Delete 141 | | 142 |
| 4 | 146 |147 | 148 | Some item on your list 149 | 150 | | 151 |152 | 153 | 154 | Edit 155 | 156 | 157 | Delete 158 | | 159 |
| 5 | 163 |164 | 165 | Some item on your list 166 | 167 | | 168 |169 | 170 | 171 | Edit 172 | 173 | 174 | Delete 175 | | 176 |
| 6 | 180 |181 | 182 | Some item on your list 183 | 184 | | 185 |186 | 187 | 188 | Edit 189 | 190 | 191 | Delete 192 | | 193 |
| 7 | 197 |198 | 199 | Some item on your list 200 | 201 | | 202 |203 | 204 | 205 | Edit 206 | 207 | 208 | Delete 209 | | 210 |
| 8 | 214 |215 | 216 | Some item on your list 217 | 218 | | 219 |220 | 221 | 222 | Edit 223 | 224 | 225 | Delete 226 | | 227 |
| 9 | 231 |232 | 233 | Some item on your list 234 | 235 | | 236 |237 | 238 | 239 | Edit 240 | 241 | 242 | Delete 243 | | 244 |
74 | Some quick example text to build on the card title 75 | and make up the bulk of the card's content. 76 |
77 | 78 || # | 87 |Item | 88 |Actions | 89 |
|---|---|---|
| 1 | 95 |96 | 97 | Some item on your list 98 | 99 | | 100 |101 | 102 | 103 | Edit 104 | 105 | 106 | Delete 107 | | 108 |
| 2 | 112 |113 | 114 | Some item on your list 115 | 116 | | 117 |118 | 119 | 120 | Edit 121 | 122 | 123 | Delete 124 | | 125 |
| 3 | 129 |130 | 131 | Some item on your list 132 | 133 | | 134 |135 | 136 | 137 | Edit 138 | 139 | 140 | Delete 141 | | 142 |
| 4 | 146 |147 | 148 | Some item on your list 149 | 150 | | 151 |152 | 153 | 154 | Edit 155 | 156 | 157 | Delete 158 | | 159 |
| 5 | 163 |164 | 165 | Some item on your list 166 | 167 | | 168 |169 | 170 | 171 | Edit 172 | 173 | 174 | Delete 175 | | 176 |
| 6 | 180 |181 | 182 | Some item on your list 183 | 184 | | 185 |186 | 187 | 188 | Edit 189 | 190 | 191 | Delete 192 | | 193 |
| 7 | 197 |198 | 199 | Some item on your list 200 | 201 | | 202 |203 | 204 | 205 | Edit 206 | 207 | 208 | Delete 209 | | 210 |
| 8 | 214 |215 | 216 | Some item on your list 217 | 218 | | 219 |220 | 221 | 222 | Edit 223 | 224 | 225 | Delete 226 | | 227 |
| 9 | 231 |232 | 233 | Some item on your list 234 | 235 | | 236 |237 | 238 | 239 | Edit 240 | 241 | 242 | Delete 243 | | 244 |
74 | Some quick example text to build on the card title 75 | and make up the bulk of the card's content. 76 |
77 | 78 || # | 87 |Item | 88 |Actions | 89 |
|---|---|---|
| 1 | 95 |96 | 97 | Some item on your list 98 | 99 | | 100 |101 | 102 | 103 | Edit 104 | 105 | 106 | Delete 107 | | 108 |
| 2 | 112 |113 | 114 | Some item on your list 115 | 116 | | 117 |118 | 119 | 120 | Edit 121 | 122 | 123 | Delete 124 | | 125 |
| 3 | 129 |130 | 131 | Some item on your list 132 | 133 | | 134 |135 | 136 | 137 | Edit 138 | 139 | 140 | Delete 141 | | 142 |
| 4 | 146 |147 | 148 | Some item on your list 149 | 150 | | 151 |152 | 153 | 154 | Edit 155 | 156 | 157 | Delete 158 | | 159 |
| 5 | 163 |164 | 165 | Some item on your list 166 | 167 | | 168 |169 | 170 | 171 | Edit 172 | 173 | 174 | Delete 175 | | 176 |
| 6 | 180 |181 | 182 | Some item on your list 183 | 184 | | 185 |186 | 187 | 188 | Edit 189 | 190 | 191 | Delete 192 | | 193 |
| 7 | 197 |198 | 199 | Some item on your list 200 | 201 | | 202 |203 | 204 | 205 | Edit 206 | 207 | 208 | Delete 209 | | 210 |
| 8 | 214 |215 | 216 | Some item on your list 217 | 218 | | 219 |220 | 221 | 222 | Edit 223 | 224 | 225 | Delete 226 | | 227 |
| 9 | 231 |232 | 233 | Some item on your list 234 | 235 | | 236 |237 | 238 | 239 | Edit 240 | 241 | 242 | Delete 243 | | 244 |
74 | Some quick example text to build on the card title 75 | and make up the bulk of the card's content. 76 |
77 | 78 || # | 87 |Item | 88 |Actions | 89 |
|---|---|---|
| 1 | 95 |96 | 97 | Some item on your list 98 | 99 | | 100 |101 | 102 | 103 | Edit 104 | 105 | 106 | Delete 107 | | 108 |
| 2 | 112 |113 | 114 | Some item on your list 115 | 116 | | 117 |118 | 119 | 120 | Edit 121 | 122 | 123 | Delete 124 | | 125 |
| 3 | 129 |130 | 131 | Some item on your list 132 | 133 | | 134 |135 | 136 | 137 | Edit 138 | 139 | 140 | Delete 141 | | 142 |
| 4 | 146 |147 | 148 | Some item on your list 149 | 150 | | 151 |152 | 153 | 154 | Edit 155 | 156 | 157 | Delete 158 | | 159 |
| 5 | 163 |164 | 165 | Some item on your list 166 | 167 | | 168 |169 | 170 | 171 | Edit 172 | 173 | 174 | Delete 175 | | 176 |
| 6 | 180 |181 | 182 | Some item on your list 183 | 184 | | 185 |186 | 187 | 188 | Edit 189 | 190 | 191 | Delete 192 | | 193 |
| 7 | 197 |198 | 199 | Some item on your list 200 | 201 | | 202 |203 | 204 | 205 | Edit 206 | 207 | 208 | Delete 209 | | 210 |
| 8 | 214 |215 | 216 | Some item on your list 217 | 218 | | 219 |220 | 221 | 222 | Edit 223 | 224 | 225 | Delete 226 | | 227 |
| 9 | 231 |232 | 233 | Some item on your list 234 | 235 | | 236 |237 | 238 | 239 | Edit 240 | 241 | 242 | Delete 243 | | 244 |
74 | Some quick example text to build on the card title 75 | and make up the bulk of the card's content. 76 |
77 | 78 || # | 87 |Item | 88 |Actions | 89 |
|---|---|---|
| 1 | 95 |96 | 97 | Some item on your list 98 | 99 | | 100 |101 | 102 | 103 | Edit 104 | 105 | 106 | Delete 107 | | 108 |
| 2 | 112 |113 | 114 | Some item on your list 115 | 116 | | 117 |118 | 119 | 120 | Edit 121 | 122 | 123 | Delete 124 | | 125 |
| 3 | 129 |130 | 131 | Some item on your list 132 | 133 | | 134 |135 | 136 | 137 | Edit 138 | 139 | 140 | Delete 141 | | 142 |
| 4 | 146 |147 | 148 | Some item on your list 149 | 150 | | 151 |152 | 153 | 154 | Edit 155 | 156 | 157 | Delete 158 | | 159 |
| 5 | 163 |164 | 165 | Some item on your list 166 | 167 | | 168 |169 | 170 | 171 | Edit 172 | 173 | 174 | Delete 175 | | 176 |
| 6 | 180 |181 | 182 | Some item on your list 183 | 184 | | 185 |186 | 187 | 188 | Edit 189 | 190 | 191 | Delete 192 | | 193 |
| 7 | 197 |198 | 199 | Some item on your list 200 | 201 | | 202 |203 | 204 | 205 | Edit 206 | 207 | 208 | Delete 209 | | 210 |
| 8 | 214 |215 | 216 | Some item on your list 217 | 218 | | 219 |220 | 221 | 222 | Edit 223 | 224 | 225 | Delete 226 | | 227 |
| 9 | 231 |232 | 233 | Some item on your list 234 | 235 | | 236 |237 | 238 | 239 | Edit 240 | 241 | 242 | Delete 243 | | 244 |
74 | Some quick example text to build on the card title 75 | and make up the bulk of the card's content. 76 |
77 | 78 || # | 87 |Item | 88 |Actions | 89 |
|---|---|---|
| 1 | 95 |96 | 97 | Some item on your list 98 | 99 | | 100 |101 | 102 | 103 | Edit 104 | 105 | 106 | Delete 107 | | 108 |
| 2 | 112 |113 | 114 | Some item on your list 115 | 116 | | 117 |118 | 119 | 120 | Edit 121 | 122 | 123 | Delete 124 | | 125 |
| 3 | 129 |130 | 131 | Some item on your list 132 | 133 | | 134 |135 | 136 | 137 | Edit 138 | 139 | 140 | Delete 141 | | 142 |
| 4 | 146 |147 | 148 | Some item on your list 149 | 150 | | 151 |152 | 153 | 154 | Edit 155 | 156 | 157 | Delete 158 | | 159 |
| 5 | 163 |164 | 165 | Some item on your list 166 | 167 | | 168 |169 | 170 | 171 | Edit 172 | 173 | 174 | Delete 175 | | 176 |
| 6 | 180 |181 | 182 | Some item on your list 183 | 184 | | 185 |186 | 187 | 188 | Edit 189 | 190 | 191 | Delete 192 | | 193 |
| 7 | 197 |198 | 199 | Some item on your list 200 | 201 | | 202 |203 | 204 | 205 | Edit 206 | 207 | 208 | Delete 209 | | 210 |
| 8 | 214 |215 | 216 | Some item on your list 217 | 218 | | 219 |220 | 221 | 222 | Edit 223 | 224 | 225 | Delete 226 | | 227 |
| 9 | 231 |232 | 233 | Some item on your list 234 | 235 | | 236 |237 | 238 | 239 | Edit 240 | 241 | 242 | Delete 243 | | 244 |
74 | Some quick example text to build on the card title 75 | and make up the bulk of the card's content. 76 |
77 | 78 || # | 87 |Item | 88 |Actions | 89 |
|---|---|---|
| 1 | 95 |96 | 97 | Some item on your list 98 | 99 | | 100 |101 | 102 | 103 | Edit 104 | 105 | 106 | Delete 107 | | 108 |
| 2 | 112 |113 | 114 | Some item on your list 115 | 116 | | 117 |118 | 119 | 120 | Edit 121 | 122 | 123 | Delete 124 | | 125 |
| 3 | 129 |130 | 131 | Some item on your list 132 | 133 | | 134 |135 | 136 | 137 | Edit 138 | 139 | 140 | Delete 141 | | 142 |
| 4 | 146 |147 | 148 | Some item on your list 149 | 150 | | 151 |152 | 153 | 154 | Edit 155 | 156 | 157 | Delete 158 | | 159 |
| 5 | 163 |164 | 165 | Some item on your list 166 | 167 | | 168 |169 | 170 | 171 | Edit 172 | 173 | 174 | Delete 175 | | 176 |
| 6 | 180 |181 | 182 | Some item on your list 183 | 184 | | 185 |186 | 187 | 188 | Edit 189 | 190 | 191 | Delete 192 | | 193 |
| 7 | 197 |198 | 199 | Some item on your list 200 | 201 | | 202 |203 | 204 | 205 | Edit 206 | 207 | 208 | Delete 209 | | 210 |
| 8 | 214 |215 | 216 | Some item on your list 217 | 218 | | 219 |220 | 221 | 222 | Edit 223 | 224 | 225 | Delete 226 | | 227 |
| 9 | 231 |232 | 233 | Some item on your list 234 | 235 | | 236 |237 | 238 | 239 | Edit 240 | 241 | 242 | Delete 243 | | 244 |