Hugo Website Template & Meghna Theme
- Add meghna hugo theme submodule - Add .gitignore for netlify local folder - Add hugo website template - Copy config.toml from meghna theme - Add logo
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Local Netlify folder
|
||||||
|
.netlify
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "hugo/themes/meghna"]
|
||||||
|
path = hugo/themes/meghna
|
||||||
|
url = git@github.com:themefisher/meghna-hugo.git
|
6
hugo/archetypes/default.md
Normal file
6
hugo/archetypes/default.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
117
hugo/config.toml
Normal file
117
hugo/config.toml
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
################################# Default configuration ###################
|
||||||
|
baseURL = "https://sravanbalaji.com"
|
||||||
|
title = "Sravan Balaji"
|
||||||
|
theme = "meghna"
|
||||||
|
# post pagination
|
||||||
|
paginate = "6"
|
||||||
|
# post excerpt
|
||||||
|
summaryLength = "15"
|
||||||
|
# disqus short name
|
||||||
|
disqusShortname = "" # get your shortname form here : https://disqus.com
|
||||||
|
# disable language
|
||||||
|
disableLanguages = []
|
||||||
|
|
||||||
|
############################# Plugins ##########################
|
||||||
|
# css plugins
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/bootstrap/bootstrap.min.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/themify-icons/themify-icons.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/magnific-popup/magnific-popup.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "plugins/slick/slick.css"
|
||||||
|
[[params.plugins.css]]
|
||||||
|
link = "https://fonts.googleapis.com/css?family=Anaheim|Quattrocento+Sans:400,700&display=swap"
|
||||||
|
|
||||||
|
# js plugins
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/jquery/jquery.min.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/bootstrap/bootstrap.min.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/slick/slick.min.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/shuffle/shuffle.min.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/magnific-popup/jquery.magnific-popup.min.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/lazy-load/lozad.min.js"
|
||||||
|
[[params.plugins.js]]
|
||||||
|
link = "plugins/google-map/map.js"
|
||||||
|
|
||||||
|
############################# Navigation ##################################
|
||||||
|
[[menu.main]]
|
||||||
|
name = "about"
|
||||||
|
URL = "about"
|
||||||
|
weight = 1
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "services"
|
||||||
|
URL = "services"
|
||||||
|
weight = 2
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "portfolio"
|
||||||
|
URL = "portfolio"
|
||||||
|
weight = 3
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "team"
|
||||||
|
URL = "team"
|
||||||
|
weight = 4
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "pricing"
|
||||||
|
URL = "pricing"
|
||||||
|
weight = 5
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "blog"
|
||||||
|
URL = "blog"
|
||||||
|
weight = 6
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "contact"
|
||||||
|
URL = "contact"
|
||||||
|
weight = 7
|
||||||
|
|
||||||
|
#### external / static link ####
|
||||||
|
[[menu.static]]
|
||||||
|
name = "themefisher"
|
||||||
|
URL = "https://themefisher.com/"
|
||||||
|
weight = 8
|
||||||
|
|
||||||
|
############################# Default Parameters ##########################
|
||||||
|
[params]
|
||||||
|
logo = "images/logo.png"
|
||||||
|
# Meta data
|
||||||
|
description = "Responsive Multipurpose Parallax HTML5 Template"
|
||||||
|
author = "Themefisher"
|
||||||
|
# Google Analytics
|
||||||
|
google_analytics_id = "" # Your ID
|
||||||
|
# post share
|
||||||
|
post_share = true
|
||||||
|
|
||||||
|
# preloader
|
||||||
|
[params.preloader]
|
||||||
|
enable = true
|
||||||
|
preloader = "images/logo.png"
|
||||||
|
|
||||||
|
############################# social icons ##########################
|
||||||
|
[[params.social]]
|
||||||
|
icon = "ti-linkedin" # themify icon pack : https://themify.me/themify-icons
|
||||||
|
link = "https://www.linkedin.com/in/sravan-balaji/"
|
||||||
|
|
||||||
|
[[params.social]]
|
||||||
|
icon = "ti-github" # themify icon pack : https://themify.me/themify-icons
|
||||||
|
link = "https://github.com/balajsra"
|
||||||
|
|
||||||
|
################################ English Language ########################
|
||||||
|
[Languages.en]
|
||||||
|
languageName = "En"
|
||||||
|
languageCode = "en-us"
|
||||||
|
contentDir = "content/english"
|
||||||
|
weight = 1
|
||||||
|
home = "Home"
|
||||||
|
copyright = "copyright © 2020 [gethugothemes](https://gethugothemes.com) all right reserved"
|
BIN
hugo/static/images/logo.png
Normal file
BIN
hugo/static/images/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
1
hugo/themes/meghna
Submodule
1
hugo/themes/meghna
Submodule
Submodule hugo/themes/meghna added at b98b8cc206
Reference in New Issue
Block a user