├── .gitignore ├── LICENSE.md ├── README.md ├── archetypes └── default.md ├── exampleSite ├── config.yaml ├── content │ └── .gitkeep └── data │ ├── config.json │ ├── contact.json │ ├── cover.json │ ├── features.json │ ├── footer.json │ ├── header.json │ ├── pricing.json │ ├── social.json │ └── team.json ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── list.html │ └── single.html ├── index.html └── partials │ ├── contact.html │ ├── cover.html │ ├── features.html │ ├── footer-end.html │ ├── footer.html │ ├── header.html │ ├── nav.html │ ├── pricing.html │ └── team.html ├── static ├── css │ └── style.css ├── favicon.png ├── images │ ├── covers │ │ ├── doctor.jpeg │ │ ├── freelancer.jpeg │ │ └── misc.jpeg │ ├── logo-black.svg │ └── logo-white.svg └── js │ └── script.js └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 UICARDIO 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | 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, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hugo Sodium 2 | 3 | [Hugo sodium](https://uicard.io/products/hugo-sodium) theme is a responsive [Hugo](https://gohugo.io) theme built on the top of Bootstrap 4. It covers all the major component for a business website making itself a perfect option for a developed static website. 4 | 5 |  6 | 7 | It comes with detailed documentation, an asset for a Hugo layman. Hugo sodium is a free version which is supported by JSON components. 8 | 9 | Components it includes: 10 | 11 | 1. Cover 12 | 2. Features/Services 13 | 3. Pricing 14 | 4. Team 15 | 5. Contact Form (works with formspree) 16 | 5. Google Analytics 17 | 6. Disqus 18 | 19 | Hugo sodium theme is simple to add to your static workplace. 20 | We also come with a pro version that contains many advance features. [Check it out too](https://demo.uicard.io/hugo-sodium-pro/). 21 | 22 | ## Pro Version 23 | 24 | [Hugo Sodium Pro](https://uicard.io/products/hugo-sodium-pro) theme has more features like blog, portfolio, SASS files and documentation. 25 | 26 | ## Useful Links 27 | 28 | [Documentation](https://demo.uicard.io/hugo-sodium-pro/documentation/) | [Free Version](https://uicard.io/products/hugo-sodium) | [Pro Version](https://uicard.io/products/hugo-sodium-pro) -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /exampleSite/config.yaml: -------------------------------------------------------------------------------- 1 | baseURL : https://demo.uicard.io/hugo-sodium/ 2 | languageCode : en-us 3 | title : Sodium 4 | theme : hugo-sodium-free 5 | 6 | taxonomies: 7 | category: categories 8 | tag: tags 9 | 10 | params: 11 | social: 12 | facebook: uicardio 13 | instagram: uicardio 14 | twitter: uicardio 15 | 16 | scripts: 17 | googleanalytics: 18 | disqus: 19 | 20 | -------------------------------------------------------------------------------- /exampleSite/content/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uicardioHQ/hugo-sodium-theme/1c681c5db2a070c736514c168fd318959033092a/exampleSite/content/.gitkeep -------------------------------------------------------------------------------- /exampleSite/data/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "components" : [ 3 | "cover", 4 | "features", 5 | "pricing", 6 | "team", 7 | "contact" 8 | ], 9 | "email" : "xxxxxxx@gmail.com" 10 | } -------------------------------------------------------------------------------- /exampleSite/data/contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "address" : "18XX, Sector 45 Gurgaon", 3 | "phone" : "+91 720 626 XXXX", 4 | "email" : "xxxxxx@gmail.com" 5 | } -------------------------------------------------------------------------------- /exampleSite/data/cover.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Your perfect headline goes here", 3 | "description" : "And some description maybe, people will like it", 4 | "image" : "misc.jpg", 5 | "button" : { 6 | "text" : "Get In Touch", 7 | "href" : "/#contact" 8 | } 9 | } -------------------------------------------------------------------------------- /exampleSite/data/features.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Features", 3 | "description" : "We're best at our services", 4 | "content" : [ 5 | { 6 | "icon" : "bell", 7 | "title" : "Feature 1", 8 | "description" : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum tristique arcu, in tristique sapien commodo sodales. Vivamus condimentum quam mi." 9 | }, 10 | { 11 | "icon" : "rocket", 12 | "title" : "Feature 2", 13 | "description" : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam efficitur, est sed vestibulum viverra, mi dui semper erat, non placerat dolor est" 14 | }, 15 | { 16 | "icon" : "clock", 17 | "title" : "Feature 3", 18 | "description" : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus in ornare orci, et posuere velit. Suspendisse tempor blandit augue, non. " 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /exampleSite/data/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "footertext" : "Copyright 2018" 3 | } -------------------------------------------------------------------------------- /exampleSite/data/header.json: -------------------------------------------------------------------------------- 1 | { 2 | "brand" : "Sodium Theme", 3 | "logo" : "logo-black.svg", 4 | "links" : [ 5 | { 6 | "title" : "Home", 7 | "href" : "" 8 | }, 9 | { 10 | "title" : "Features", 11 | "href" : "#features" 12 | }, 13 | { 14 | "title" : "Pricing", 15 | "href" : "#pricing" 16 | }, 17 | { 18 | "title" : "Contact", 19 | "href" : "#contact" 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /exampleSite/data/pricing.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Pricing", 3 | "description" : "Pricing subtitle", 4 | "content" : [ 5 | { 6 | "title" : "Starter", 7 | "price" : "$30", 8 | "features" : [ 9 | "No setup, monthly, or hidden fees", 10 | "Pay only for what you use", 11 | "Real-time fee reporting" 12 | ], 13 | "button" : { 14 | "text" : "Contact", 15 | "href" : "/#contact" 16 | } 17 | }, 18 | { 19 | "title" : "Advance", 20 | "price" : "$90", 21 | "features" : [ 22 | "All features of Starter Pack", 23 | "Feature number 2", 24 | "Feature number 3", 25 | "Feature number 4" 26 | ], 27 | "button" : { 28 | "text" : "Contact", 29 | "href" : "/#contact" 30 | } 31 | } 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /exampleSite/data/social.json: -------------------------------------------------------------------------------- 1 | { 2 | "facebook" : "uicardio", 3 | "instagram" : "uicardio", 4 | "twitter" : "uicardio", 5 | "linkedin" : "uicardio" 6 | } -------------------------------------------------------------------------------- /exampleSite/data/team.json: -------------------------------------------------------------------------------- 1 | { 2 | "title" : "Our team is amazing", 3 | "description" : "Our headquarter is located in Gurgaon", 4 | "members" : [ 5 | { 6 | "name" : "Avatar 1", 7 | "description" : "CEO", 8 | "avatar" : "dog1.jpg" 9 | }, 10 | { 11 | "name" : "Avatar 2", 12 | "description" : "Content Writer", 13 | "avatar" : "dog2.jpg" 14 | }, 15 | { 16 | "name" : "Avatar 3", 17 | "description" : "CEO", 18 | "avatar" : "dog3.jpg" 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uicardioHQ/hugo-sodium-theme/1c681c5db2a070c736514c168fd318959033092a/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uicardioHQ/hugo-sodium-theme/1c681c5db2a070c736514c168fd318959033092a/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 |
{{ $description }}
8 |{{ .description }}
14 |