├── layouts ├── 404.html ├── _default │ ├── baseof.html │ └── single.html ├── index.html ├── partials │ ├── screenshots.html │ ├── head.html │ ├── testimonial.html │ ├── header.html │ ├── blogPost.html │ ├── faq.html │ ├── services.html │ ├── feature.html │ ├── video.html │ ├── footer.html │ └── heroArea.html ├── blog │ ├── single.html │ └── list.html └── contact │ └── list.html ├── .gitignore ├── archetypes └── default.md ├── exampleSite ├── content │ ├── contact │ │ └── _index.md │ ├── blog │ │ ├── _index.md │ │ ├── Hugo and It's future.md │ │ ├── Freelancing-and-corona.md │ │ ├── How-solve-coding-problem.md │ │ ├── Know-when-to-take-break.md │ │ ├── Corona-and-future-of-coders.md │ │ ├── Future-of-cloud-computing.md │ │ ├── announcing-our-2019-roadmap.md │ │ ├── announcing-our-2016-roadmap.md │ │ ├── Is-working-from-home-effective.md │ │ └── a-new-year-a-new-website-introducing-apsho-1.md │ └── privacy.md ├── data │ ├── homeblog.yml │ ├── video.yml │ ├── hero.yml │ ├── services.yml │ ├── screenshots.yml │ ├── feature.yml │ ├── faq.yml │ └── testimonial.yml ├── static │ └── images │ │ ├── logo.png │ │ ├── video │ │ └── video.png │ │ ├── client │ │ ├── client-1.png │ │ ├── client-2.png │ │ └── client-3.png │ │ ├── hero │ │ ├── appol.png.png │ │ ├── hero-image.png │ │ ├── nav-bg.svg │ │ ├── logo-bg.svg │ │ └── appol.svg │ │ ├── blog │ │ ├── blog-post-1.jpg │ │ ├── blog-post-2.jpg │ │ ├── blog-post-3.jpg │ │ ├── blog-post-4.jpg │ │ ├── blog-post-5.jpg │ │ ├── blog-post-6.jpg │ │ ├── single-blog-1.jpg │ │ ├── single-blog-2.jpg │ │ ├── single-blog-3.jpg │ │ ├── single-blog-4.jpg │ │ ├── single-blog-5.jpg │ │ └── single-blog-6.jpg │ │ ├── screenshots │ │ ├── slider1.png │ │ ├── slider2.png │ │ ├── slider3.png │ │ ├── slider4.png │ │ ├── slider5.png │ │ └── slider-frame.svg │ │ ├── frequntly │ │ └── icon-search.svg │ │ ├── feature │ │ ├── feature-shape-02.svg │ │ ├── feature-shape-04.svg │ │ ├── feature-shape-03.svg │ │ └── feature-shape-01.svg │ │ ├── service-icons │ │ ├── icon-data.svg │ │ ├── icon-access.svg │ │ ├── icon-trial.svg │ │ └── icon-settings.svg │ │ └── footer │ │ └── footer-bg.svg ├── resources │ └── _gen │ │ └── assets │ │ └── scss │ │ └── scss │ │ ├── critical.scss_b95b077eb505d5c0aff8055eaced30ad.json │ │ └── non-critical.scss_b95b077eb505d5c0aff8055eaced30ad.json └── config.toml ├── images ├── tn.png └── screenshot.png ├── assets ├── scss │ ├── fonts │ │ ├── slick.eot │ │ ├── slick.ttf │ │ ├── slick.woff │ │ ├── themify.eot │ │ ├── themify.ttf │ │ ├── themify.woff │ │ └── slick.svg │ ├── components │ │ ├── _contact.scss │ │ ├── _hero.scss │ │ ├── _faq.scss │ │ ├── _testimonial.scss │ │ ├── _feature.scss │ │ ├── _service.scss │ │ ├── _video.scss │ │ ├── _screenshots.scss │ │ ├── _navigation.scss │ │ ├── _footer.scss │ │ └── _blog.scss │ ├── critical.scss │ ├── _variables.scss │ ├── non-critical.scss │ ├── _typography.scss │ ├── _mixins.scss │ ├── _common.scss │ ├── plugins │ │ ├── _slick.scss │ │ ├── _slick-theme.scss │ │ └── _magnific-popup.scss │ └── _buttons.scss └── js │ ├── form-handler.js │ └── script.js ├── static └── themify │ ├── fonts │ ├── themify.eot │ ├── themify.ttf │ └── themify.woff │ └── themify.css ├── theme.toml ├── LICENSE └── README.md /layouts/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /exampleSite/content/contact/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Let's talk about everything 3 | --- -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /assets/scss/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/assets/scss/fonts/slick.eot -------------------------------------------------------------------------------- /assets/scss/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/assets/scss/fonts/slick.ttf -------------------------------------------------------------------------------- /assets/scss/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/assets/scss/fonts/slick.woff -------------------------------------------------------------------------------- /assets/scss/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/assets/scss/fonts/themify.eot -------------------------------------------------------------------------------- /assets/scss/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/assets/scss/fonts/themify.ttf -------------------------------------------------------------------------------- /assets/scss/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/assets/scss/fonts/themify.woff -------------------------------------------------------------------------------- /exampleSite/data/homeblog.yml: -------------------------------------------------------------------------------- 1 | --- 2 | enable: true 3 | title: Recent Articles 4 | blogButtonText: See all posts 5 | -------------------------------------------------------------------------------- /static/themify/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/static/themify/fonts/themify.eot -------------------------------------------------------------------------------- /static/themify/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/static/themify/fonts/themify.ttf -------------------------------------------------------------------------------- /exampleSite/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/logo.png -------------------------------------------------------------------------------- /static/themify/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/static/themify/fonts/themify.woff -------------------------------------------------------------------------------- /exampleSite/static/images/video/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/video/video.png -------------------------------------------------------------------------------- /exampleSite/static/images/client/client-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/client/client-1.png -------------------------------------------------------------------------------- /exampleSite/static/images/client/client-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/client/client-2.png -------------------------------------------------------------------------------- /exampleSite/static/images/client/client-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/client/client-3.png -------------------------------------------------------------------------------- /exampleSite/static/images/hero/appol.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/hero/appol.png.png -------------------------------------------------------------------------------- /exampleSite/static/images/hero/hero-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/hero/hero-image.png -------------------------------------------------------------------------------- /exampleSite/static/images/blog/blog-post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/blog-post-1.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/blog-post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/blog-post-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/blog-post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/blog-post-3.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/blog-post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/blog-post-4.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/blog-post-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/blog-post-5.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/blog-post-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/blog-post-6.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/single-blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/single-blog-1.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/single-blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/single-blog-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/single-blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/single-blog-3.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/single-blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/single-blog-4.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/single-blog-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/single-blog-5.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/single-blog-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/blog/single-blog-6.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/screenshots/slider1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/screenshots/slider1.png -------------------------------------------------------------------------------- /exampleSite/static/images/screenshots/slider2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/screenshots/slider2.png -------------------------------------------------------------------------------- /exampleSite/static/images/screenshots/slider3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/screenshots/slider3.png -------------------------------------------------------------------------------- /exampleSite/static/images/screenshots/slider4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/screenshots/slider4.png -------------------------------------------------------------------------------- /exampleSite/static/images/screenshots/slider5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StaticMania/hugo-apsho/HEAD/exampleSite/static/images/screenshots/slider5.png -------------------------------------------------------------------------------- /exampleSite/resources/_gen/assets/scss/scss/critical.scss_b95b077eb505d5c0aff8055eaced30ad.json: -------------------------------------------------------------------------------- 1 | {"Target":"scss/critical.min.css","MediaType":"text/css","Data":{}} -------------------------------------------------------------------------------- /exampleSite/resources/_gen/assets/scss/scss/non-critical.scss_b95b077eb505d5c0aff8055eaced30ad.json: -------------------------------------------------------------------------------- 1 | {"Target":"scss/non-critical.min.css","MediaType":"text/css","Data":{}} -------------------------------------------------------------------------------- /assets/scss/components/_contact.scss: -------------------------------------------------------------------------------- 1 | .contact { 2 | padding-bottom: 100px; 3 | &-form { 4 | border-radius: 10px; 5 | box-shadow: 0px 5px 25px rgba(25, 24, 29, 0.1); 6 | padding: 50px 30px; 7 | margin-top: -150px; 8 | background: $white; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assets/scss/critical.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | 3 | @import 'plugins/bootstrap.min'; 4 | 5 | @import "typography"; 6 | 7 | @import "mixins"; 8 | 9 | @import "buttons"; 10 | 11 | @import "components/navigation"; 12 | 13 | @import "components/hero"; 14 | 15 | @import "components/video"; -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ partial "head.html" . }} 4 |
5 | {{ partial "header.html" . }} 6 |9 | {{ .Params.description }} 10 |
11 |12 | {{ .description }} 13 |
14 |12 | {{ .description }} 13 |
14 |12 | {{ .description }} 13 |
14 |
3 |
4 | Apsho Hugo – App Landing Page is the perfect app showcase Hugo Theme. Apsho is a better way to present your modern business and app showcasing. It’s easy to customize and also well documented. And compatible with Desktop, laptop, mobile, and also compatible with major browsers. We follow the modern design system to craft the template.
5 |
6 | ## Table of Contents
7 |
8 | - [Live Demo](#live-demo)
9 | - [Installation](#installation)
10 | - [Main Features](#features)
11 | - [Support](#support)
12 | - [Licensing](#licensing)
13 | - [Hire](#hire)
14 |
15 | ## Live Demo
16 |
17 | Checkout the live demo [here](https://apsho-hugo.staticmania.com/)
18 |
19 | ## Installation
20 |
21 | 1. Add the repository into your Hugo Project repository as a submodule, `git submodule add git@github.com:StaticMania/hugo-apsho.git themes/apsho`.
22 | 2. Copy the `data`, `content`, `static`, `resources` & `config.toml` files from the `exampleSite` directory and paste it on you Hugo Project repository/directory. From the site home directory:
23 |
24 | cp -a themes/apsho/exampleSite/\* .
25 |
26 | 3. Build your site with `hugo serve` and see the result at `http://localhost:1313/`.
27 |
28 | ## Features
29 |
30 | - Responsive Ready.
31 | - Powered by Bootstrap 4.
32 | - Blog Support.
33 | - Well formatted code.
34 | - Easy Customization.
35 | - FabForm.io [static website form](https://fabform.io).
36 | - Google Analytics.
37 | - Forestry Integrated.
38 | - Crafted for Personal Portfolio
39 |
40 | ## Support
41 |
42 | Have some question or facing any technical trouble feel free to [Contact Us](https://staticmania.com/contact/)
43 |
44 | ## Licensing
45 |
46 | This Repository is licensed under the [MIT](https://github.com/StaticMania/apsho/blob/master/LICENSE) License
47 |
48 | ## Hire
49 |
50 | Need help to build HUGO websites with your custom requirements. Feel free to [contact](https://staticmania.com/contact/) with us. We provide custom development service for HUGO.
51 |
--------------------------------------------------------------------------------
/assets/scss/fonts/slick.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
15 |
--------------------------------------------------------------------------------
/assets/scss/_common.scss:
--------------------------------------------------------------------------------
1 | a {
2 | color: $primary-color;
3 | }
4 |
5 | .section {
6 | &-title {
7 | text-align: center;
8 | margin-bottom: 50px;
9 | @include mobile {
10 | margin-bottom: 0;
11 | }
12 |
13 | h2 {
14 | font-size: 45px;
15 | @include tablet {
16 | font-size: 35px;
17 | line-height: 44px;
18 | }
19 | @include mobile {
20 | font-size: 30px;
21 | }
22 | }
23 | }
24 | }
25 |
26 | .ml-25 {
27 | margin-left: 25px;
28 |
29 | @include desktop {
30 | margin-left: 0px;
31 | }
32 | }
33 |
34 | .mr-25 {
35 | margin-right: 25px;
36 |
37 | @include desktop {
38 | margin-right: 0px;
39 | }
40 | }
41 |
42 | .form-control {
43 | min-height: 52px;
44 | margin-bottom: 30px;
45 | padding: 15px 20px;
46 | font-size: 15px;
47 | background: rgba($color: $border-color, $alpha: 0.5);
48 | border-radius: 4px;
49 | border-color: transparent;
50 | transition: 0.3s ease;
51 | &:focus {
52 | box-shadow: none;
53 | border-color: $primary-color;
54 | box-shadow: 0px 5px 25px rgba(25, 24, 29, 0.06);
55 | }
56 | }
57 |
58 | .page {
59 | &-header {
60 | padding: 130px 0 200px;
61 | background-color: $white;
62 | text-align: center;
63 | margin: 130px 100px 0;
64 | background: #f9f2ea;
65 | border-radius: 50px;
66 | @include desktop-xl {
67 | margin: 130px 50px 0;
68 | }
69 | @include desktop {
70 | margin: 130px 30px 0;
71 | border-radius: 25px;
72 | padding: 80px 0 180px;
73 | }
74 | @include mobile {
75 | margin: 100px 15px 0;
76 | padding: 50px 0 120px;
77 | }
78 | h1 {
79 | @include desktop {
80 | font-size: 40px;
81 | }
82 | margin-bottom: 20px;
83 | }
84 | h2 {
85 | font-size: 40px;
86 | line-height: 52px;
87 | @include mobile {
88 | font-size: 30px;
89 | line-height: 42px;
90 | }
91 | }
92 | }
93 | &-content {
94 | padding: 10px 50px 30px;
95 | &-wrapper {
96 | padding: 40px 50px;
97 | background-color: white;
98 | border-radius: 10px;
99 | margin-top: -150px;
100 | box-shadow: 0px 5px 25px rgba(25, 24, 29, 0.06);
101 | }
102 | }
103 | }
104 |
--------------------------------------------------------------------------------
/assets/scss/plugins/_slick.scss:
--------------------------------------------------------------------------------
1 | /* Slider */
2 | .slick-slider
3 | {
4 | position: relative;
5 |
6 | display: block;
7 | box-sizing: border-box;
8 |
9 | -webkit-user-select: none;
10 | -moz-user-select: none;
11 | -ms-user-select: none;
12 | user-select: none;
13 |
14 | -webkit-touch-callout: none;
15 | -khtml-user-select: none;
16 | -ms-touch-action: pan-y;
17 | touch-action: pan-y;
18 | -webkit-tap-highlight-color: transparent;
19 | }
20 |
21 | .slick-list
22 | {
23 | position: relative;
24 |
25 | display: block;
26 | overflow: hidden;
27 |
28 | margin: 0;
29 | padding: 0;
30 | }
31 | .slick-list:focus
32 | {
33 | outline: none;
34 | }
35 | .slick-list.dragging
36 | {
37 | cursor: pointer;
38 | cursor: hand;
39 | }
40 |
41 | .slick-slider .slick-track,
42 | .slick-slider .slick-list
43 | {
44 | -webkit-transform: translate3d(0, 0, 0);
45 | -moz-transform: translate3d(0, 0, 0);
46 | -ms-transform: translate3d(0, 0, 0);
47 | -o-transform: translate3d(0, 0, 0);
48 | transform: translate3d(0, 0, 0);
49 | }
50 |
51 | .slick-track
52 | {
53 | position: relative;
54 | top: 0;
55 | left: 0;
56 |
57 | display: block;
58 | margin-left: auto;
59 | margin-right: auto;
60 | }
61 | .slick-track:before,
62 | .slick-track:after
63 | {
64 | display: table;
65 |
66 | content: '';
67 | }
68 | .slick-track:after
69 | {
70 | clear: both;
71 | }
72 | .slick-loading .slick-track
73 | {
74 | visibility: hidden;
75 | }
76 |
77 | .slick-slide
78 | {
79 | display: none;
80 | float: left;
81 |
82 | height: 100%;
83 | min-height: 1px;
84 | }
85 | [dir='rtl'] .slick-slide
86 | {
87 | float: right;
88 | }
89 | .slick-slide img
90 | {
91 | display: block;
92 | }
93 | .slick-slide.slick-loading img
94 | {
95 | display: none;
96 | }
97 | .slick-slide.dragging img
98 | {
99 | pointer-events: none;
100 | }
101 | .slick-initialized .slick-slide
102 | {
103 | display: block;
104 | }
105 | .slick-loading .slick-slide
106 | {
107 | visibility: hidden;
108 | }
109 | .slick-vertical .slick-slide
110 | {
111 | display: block;
112 |
113 | height: auto;
114 |
115 | border: 1px solid transparent;
116 | }
117 | .slick-arrow.slick-hidden {
118 | display: none;
119 | }
120 |
--------------------------------------------------------------------------------
/layouts/blog/list.html:
--------------------------------------------------------------------------------
1 | {{ define "main" }}
2 |
3 | 9 | {{ .Params.description }} 10 |
11 |{{ .description }}
43 |10 | Don't like forms send us an 11 | email 12 |
13 |80 | ** Form Backend 81 |
82 |32 | {{ .description }} 33 |
34 |35 | {{ .description2 }} 36 |
37 | 38 | {{ .buttonText }} 39 | 40 |50 | {{ .description2nd }} 51 |
52 |{{ .text }}
59 |{{ .description }}
47 | 101 |