From 0d0e5e992c66b0addbcbc581ed34d64c7a4433fb Mon Sep 17 00:00:00 2001 From: Kevin Mok Date: Sat, 23 Nov 2019 23:15:44 -0500 Subject: [PATCH] Initial commit: Meghna Hugo example site --- .gitmodules | 6 + archetypes/default.md | 6 + config.toml | 137 ++++++++++++++++++++ content/author/jamica-jock/_index.md | 7 + content/author/john-doe/_index.md | 7 + content/author/somrat/_index.md | 7 + content/blog/are-you-doing-the-right-way.md | 20 +++ content/blog/installation.md | 83 ++++++++++++ content/blog/simple-image-post.md | 17 +++ content/blog/simple-post-title.md | 19 +++ data/about.yml | 15 +++ data/about2.yml | 13 ++ data/blog.yml | 6 + data/comments/.keep | 1 + data/contact.yml | 21 +++ data/en/blog.yml | 2 + data/pl/blog.yml | 2 + data/portfolio.yml | 76 +++++++++++ data/pricing.yml | 55 ++++++++ data/service.yml | 27 ++++ data/skill.yml | 26 ++++ data/team.yml | 59 +++++++++ data/testimonial.yml | 17 +++ static/css/custom.css | 1 + static/images/.gitattributes | 28 ++++ static/images/about/about-business-man.jpg | 3 + static/images/about/company-growth.png | 3 + static/images/backgrounds/bg-1.jpg | 3 + static/images/backgrounds/bg-2.jpg | 3 + static/images/blog/avatar.png | 3 + static/images/blog/blog-post-1.jpg | 3 + static/images/blog/blog-post-2.jpg | 3 + static/images/blog/blog-post-3.jpg | 3 + static/images/blog/meghna.png | 3 + static/images/blog/user.jpg | 3 + static/images/logo.png | 3 + static/images/logos/our-client.jpg | 3 + static/images/portfolio/portfolio-1.jpg | 3 + static/images/portfolio/portfolio-2.jpg | 3 + static/images/portfolio/portfolio-3.jpg | 3 + static/images/portfolio/portfolio-4.jpg | 3 + static/images/portfolio/portfolio-5.jpg | 3 + static/images/portfolio/portfolio-6.jpg | 3 + static/images/portfolio/portfolio-7.jpg | 3 + static/images/portfolio/portfolio-8.jpg | 3 + static/images/slider/hero-area.jpg | 3 + static/images/team/author.jpg | 3 + static/images/team/client-1.jpg | 3 + static/images/team/client-2.jpg | 3 + static/images/team/team-1.jpg | 3 + static/images/team/team-2.jpg | 3 + static/images/team/team-3.jpg | 3 + static/images/team/team-4.jpg | 3 + staticman.yml | 77 +++++++++++ themes/meghna-hugo | 1 + 55 files changed, 820 insertions(+) create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/author/jamica-jock/_index.md create mode 100644 content/author/john-doe/_index.md create mode 100644 content/author/somrat/_index.md create mode 100644 content/blog/are-you-doing-the-right-way.md create mode 100644 content/blog/installation.md create mode 100644 content/blog/simple-image-post.md create mode 100644 content/blog/simple-post-title.md create mode 100644 data/about.yml create mode 100644 data/about2.yml create mode 100644 data/blog.yml create mode 100644 data/comments/.keep create mode 100644 data/contact.yml create mode 100644 data/en/blog.yml create mode 100644 data/pl/blog.yml create mode 100644 data/portfolio.yml create mode 100644 data/pricing.yml create mode 100644 data/service.yml create mode 100644 data/skill.yml create mode 100644 data/team.yml create mode 100644 data/testimonial.yml create mode 100644 static/css/custom.css create mode 100644 static/images/.gitattributes create mode 100644 static/images/about/about-business-man.jpg create mode 100644 static/images/about/company-growth.png create mode 100644 static/images/backgrounds/bg-1.jpg create mode 100644 static/images/backgrounds/bg-2.jpg create mode 100644 static/images/blog/avatar.png create mode 100644 static/images/blog/blog-post-1.jpg create mode 100644 static/images/blog/blog-post-2.jpg create mode 100644 static/images/blog/blog-post-3.jpg create mode 100644 static/images/blog/meghna.png create mode 100644 static/images/blog/user.jpg create mode 100644 static/images/logo.png create mode 100644 static/images/logos/our-client.jpg create mode 100644 static/images/portfolio/portfolio-1.jpg create mode 100644 static/images/portfolio/portfolio-2.jpg create mode 100644 static/images/portfolio/portfolio-3.jpg create mode 100644 static/images/portfolio/portfolio-4.jpg create mode 100644 static/images/portfolio/portfolio-5.jpg create mode 100644 static/images/portfolio/portfolio-6.jpg create mode 100644 static/images/portfolio/portfolio-7.jpg create mode 100644 static/images/portfolio/portfolio-8.jpg create mode 100644 static/images/slider/hero-area.jpg create mode 100644 static/images/team/author.jpg create mode 100644 static/images/team/client-1.jpg create mode 100644 static/images/team/client-2.jpg create mode 100644 static/images/team/team-1.jpg create mode 100644 static/images/team/team-2.jpg create mode 100644 static/images/team/team-3.jpg create mode 100644 static/images/team/team-4.jpg create mode 100644 staticman.yml create mode 160000 themes/meghna-hugo diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..cb69fba --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "meghna-hugo"] + path = meghna-hugo + url = git@github.com:themefisher/meghna-hugo.git +[submodule "themes/meghna-hugo"] + path = themes/meghna-hugo + url = git@github.com:themefisher/meghna-hugo.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..cbb25c0 --- /dev/null +++ b/config.toml @@ -0,0 +1,137 @@ +baseURL = "http://example.org/" +languageCode = "en-us" +DefaultContentLanguage = "en" +title = "Meghna" +theme = "meghna-hugo" +summaryLength = 10 + +[taxonomies] + author = "author" + category = "categories" + tag = "tags" + +# Menu +[menu] + [[menu.nav]] + name = "About Us" + URL = "about" + weight = 2 + + [[menu.nav]] + name = "Service" + URL = "services" + weight = 3 + + [[menu.nav]] + name = "Portfolio" + URL = "portfolio" + weight = 4 + + [[menu.nav]] + name = "Team" + URL = "our-team" + weight = 5 + + [[menu.nav]] + name = "Pricing" + URL = "pricing" + weight = 6 + + [[menu.nav]] + name = "Blog" + URL = "blog" + weight = 7 + + [[menu.nav]] + name = "Contact" + URL = "contact-us" + weight = 8 + +# Site params +[params] +home= "Home" +logo = "images/logo.png" +gmapAPI = "https://maps.googleapis.com/maps/api/js?key=AIzaSyCcABaamniA6OL5YvYSpB3pFMNrXwXnLwU&libraries=places" +# Meta data +description = "Responsive Multipurpose Parallax HTML5 Template" +author = "Themefisher" +# Google Analitycs +googleAnalitycsID = "Your ID" +custom_css = ["css/custom.css"] + + # Banner Section + [params.banner] + enable = true + bgImage = "images/slider/hero-area.jpg" + icon = "tf-ion-play" + heading = "Experience the new reality" + content= "Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugit, excepturi. At recusandae sit perferendis autem,iste tempora nostrum numquam sapiente!" + btn = true + btnText="Explore Us" + btnURL="#services" + + # call to action + [params.cta] + enable = true + title = "Great Design & Incredible Features" + content = "Lorem ipsum dolor sit amet consectetur adipisicing elit. Officiis tenetur odio impedit incidunt? Omnis accusantium ea reiciendis, fugit commodi nostrum." + btnURL = "#" + btnText = "Start a project with us" + + # counter + [params.counter] + enable = true + bgImage = "images/backgrounds/bg-1.jpg" + [[params.counter.counterItem]] + title = "Happy Clients" + icon = "tf-ion-android-happy" + count = "320" + + [[params.counter.counterItem]] + title = "Projects completed" + icon = "tf-ion-archive" + count = "565" + + [[params.counter.counterItem]] + title = "Positive feedback" + icon = "tf-ion-thumbsup" + count = "95" + + [[params.counter.counterItem]] + title = "Cups of Coffee" + icon = "tf-ion-coffee" + count = "2500" + + # footer + [params.footer] + copyright = "Themefisher" + copyrightURL = "http://www.themefisher.com" + + # social Icons + [[params.footer.socialIcon]] + icon = "tf-ion-social-facebook" + url = "#" + + [[params.footer.socialIcon]] + icon = "tf-ion-social-twitter" + url = "#" + + [[params.footer.socialIcon]] + icon = "tf-ion-social-google-outline" + url = "#" + + [[params.footer.socialIcon]] + icon = "tf-ion-social-youtube" + url = "#" + + [[params.footer.socialIcon]] + icon = "tf-ion-social-linkedin" + url = "#" + + [[params.footer.socialIcon]] + icon = "tf-ion-social-dribbble-outline" + url = "#" + + [[params.footer.socialIcon]] + icon = "tf-ion-social-pinterest-outline" + url = "#" diff --git a/content/author/jamica-jock/_index.md b/content/author/jamica-jock/_index.md new file mode 100644 index 0000000..cc244b1 --- /dev/null +++ b/content/author/jamica-jock/_index.md @@ -0,0 +1,7 @@ +--- +name: Jamica Jock +email: email@example.org +github: example +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin eu magna arcu. Vivamus id hendrerit dui, in elementum ante. Aenean euismod ipsum sed sagittis accumsan. Ut ultrices tincidunt viverra. Mauris eu nisl urna. Proin finibus feugiat tortor ut interdum. Curabitur. diff --git a/content/author/john-doe/_index.md b/content/author/john-doe/_index.md new file mode 100644 index 0000000..9683ec6 --- /dev/null +++ b/content/author/john-doe/_index.md @@ -0,0 +1,7 @@ +--- +name: John Doe +email: email@example.com +github: example +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam pulvinar turpis ac est vulputate egestas at vitae nunc. Praesent vestibulum nulla at ligula rutrum, quis cursus tellus tempus. Proin faucibus dapibus auctor. Mauris faucibus imperdiet metus, eget consectetur eros porttitor. diff --git a/content/author/somrat/_index.md b/content/author/somrat/_index.md new file mode 100644 index 0000000..fbe478f --- /dev/null +++ b/content/author/somrat/_index.md @@ -0,0 +1,7 @@ +--- +name: Somrat +email: email2@example.org +github: example +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sit amet vulputate augue. Duis auctor lacus id vehicula gravida. Nam suscipit vitae purus et laoreet. Donec nisi dolor, consequat vel pretium id, auctor in dui. Nam iaculis, neque ac ullamcorper. diff --git a/content/blog/are-you-doing-the-right-way.md b/content/blog/are-you-doing-the-right-way.md new file mode 100644 index 0000000..1aa9eac --- /dev/null +++ b/content/blog/are-you-doing-the-right-way.md @@ -0,0 +1,20 @@ +--- +title: "Are You Doing the Right Way" +date: 2018-09-12T14:51:12+06:00 +author: John Doe +image: images/blog/blog-post-3.jpg +description : "This is meta description" +--- + +Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. + +Sed porttitor lectus nibh. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Nulla porttitor accumsan tincidunt. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Quisque velit nisi, pretium ut lacinia in, elementum id enim. + +> Design is not just what it looks like and feels like. Design is how it works. + +Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. + +Sed porttitor lectus nibh. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Nulla porttitor accumsan tincidunt. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Quisque velit nisi, pretium ut lacinia in, elementum id enim. + + + diff --git a/content/blog/installation.md b/content/blog/installation.md new file mode 100644 index 0000000..5486c60 --- /dev/null +++ b/content/blog/installation.md @@ -0,0 +1,83 @@ ++++ +title = "How To Setup Meghna Hugo" +date = "2019-3-06T21:49:20+02:00" +description = "This is meta description for blog page" +tags = ["golang", "programming", "theme", "hugo"] +categories = ["starting"] +author = "Themefisher" +image = "images/blog/meghna.png" ++++ + +## Install this template by following those simple steps: + +### STEP-1 : Hugo installation + +Check this link below for install hugo on your computer. +[hugo install documentation](https://gohugo.io/getting-started/installing/) + +### STEP-2 : Create your project + +Hugo provides a `new` command to create a new website. + +``` +hugo new site +``` + +### STEP-3 : Install the theme +Run this command +``` +hugo new site meghna-hugo +``` +and then go to the themes folder inside of meghna-hugo folder. You can also use this command ```cd meghna-hugo/themes``` for going to this folder. +Then run the command +``` +git clone git@github.com:themefisher/meghna-hugo.git +``` + +Alternatively, you can [download the theme as .zip](https://github.com/themefisher/meghna-hugo/archive/master.zip) file and extract it in the `themes` directory + +After that you need to go to the `meghna-hugo/exampleSite` folder and copy or cut all the elements, and now go back to the root folder and paste it here. + +open the command prompt again and run `cd ../` command for go back to the root folder. + +### STEP-4 : Host locally + +Launching the website locally by using the following command: + +``` +hugo serve +``` + +Go to `http://localhost:1313` + +Or you can check this video documentation for installing this template: +{{< youtube 3O3qvDoVp5g >}} + +### STEP-5 : Basic configuration + +When building the website, you can set a theme by using `--theme` option. However, we suggest you modify the configuration file (`config.toml`) and set the theme as the default. + +```toml +# Change the default theme to be use when building the site with Hugo +theme = "meghna-hugo" +``` + +### STEP-6 : Create your first content pages + +``` +hugo new blog/post-name.md +``` + +### STEP-7 : Build the website + +When your site is ready to deploy, run the following command: + +``` +hugo + +# You can also create a minified version by using this command: +hugo--minify + +``` + +A `public` folder will be generated, containing all static content and assets for your website. It can now be deployed on any web server. \ No newline at end of file diff --git a/content/blog/simple-image-post.md b/content/blog/simple-image-post.md new file mode 100644 index 0000000..0442243 --- /dev/null +++ b/content/blog/simple-image-post.md @@ -0,0 +1,17 @@ +--- +title: "Simple Image Post" +date: 2018-09-12T12:52:36+06:00 +image: images/blog/blog-post-1.jpg +author: Jamica Jock +description : "This is meta description" +--- + +Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. + +Sed porttitor lectus nibh. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Nulla porttitor accumsan tincidunt. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Quisque velit nisi, pretium ut lacinia in, elementum id enim. + +> Design is not just what it looks like and feels like. Design is how it works. + +Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. + +Sed porttitor lectus nibh. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Nulla porttitor accumsan tincidunt. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Quisque velit nisi, pretium ut lacinia in, elementum id enim. \ No newline at end of file diff --git a/content/blog/simple-post-title.md b/content/blog/simple-post-title.md new file mode 100644 index 0000000..5ad0484 --- /dev/null +++ b/content/blog/simple-post-title.md @@ -0,0 +1,19 @@ +--- +title: "Simple Post Title" +date: 2018-09-12T14:39:16+06:00 +author: Somrat +image: images/blog/blog-post-2.jpg +description : "This is meta description" +--- + + +Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. + +Sed porttitor lectus nibh. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Nulla porttitor accumsan tincidunt. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Quisque velit nisi, pretium ut lacinia in, elementum id enim. + +> Design is not just what it looks like and feels like. Design is how it works. + +Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. + +Sed porttitor lectus nibh. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Nulla porttitor accumsan tincidunt. Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Quisque velit nisi, pretium ut lacinia in, elementum id enim. + diff --git a/data/about.yml b/data/about.yml new file mode 100644 index 0000000..bdd572f --- /dev/null +++ b/data/about.yml @@ -0,0 +1,15 @@ +enable : true +heading : About +headingSpan : Us +aboutItem : +- icon : tf-tools + title : We're Creative + content : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit, nihil, libero, perspiciatis eos provident laborum eum dignissimos. + +- icon : tf-strategy + title : We're Professional + content : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit, nihil, libero, perspiciatis eos provident laborum eum dignissimos. + +- icon : tf-anchor2 + title : We're Genius + content : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit, nihil, libero, perspiciatis eos provident laborum eum dignissimos. \ No newline at end of file diff --git a/data/about2.yml b/data/about2.yml new file mode 100644 index 0000000..76708d3 --- /dev/null +++ b/data/about2.yml @@ -0,0 +1,13 @@ +enable : true +image : images/about/about-business-man.jpg +title : We’re A Digital Design Agency. +description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam tempora itaque, autem dolores culpa cum mollitia voluptate nesciunt voluptatibus quasi. +description2 : Lorem ipsum dolor sit amet consectetur adipisicing elit. Aliquam tempora itaque, autem dolores culpa cum mollitia voluptate nesciunt voluptatibus quasi. Aliquam tempora itaque, autem dolores culpa cum mollitia voluptate nesciunt voluptatibus quasi. +aboutItem : + - icon : tf-circle-compass + title : SEO Optimized + content : Lorem ipsum, dolor sit amet consectetur adipisicing elit. Possimus consectetur dolores repellendus eos saepe + + - icon : tf-hotairballoon + title : Easy Customization + content : Lorem ipsum, dolor sit amet consectetur adipisicing elit. Possimus consectetur dolores repellendus eos saepe \ No newline at end of file diff --git a/data/blog.yml b/data/blog.yml new file mode 100644 index 0000000..61a6551 --- /dev/null +++ b/data/blog.yml @@ -0,0 +1,6 @@ +enable : true +sharing : true +staticmanComments: + enable: false + notifications: true + api: https://dev.staticman.net/v3/entry/github/themefisher/meghna-hugo/master/comments diff --git a/data/comments/.keep b/data/comments/.keep new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/data/comments/.keep @@ -0,0 +1 @@ + diff --git a/data/contact.yml b/data/contact.yml new file mode 100644 index 0000000..d6ef8f0 --- /dev/null +++ b/data/contact.yml @@ -0,0 +1,21 @@ +enable : true +heading : Get In +headingSpan : Touch +title : Contact Details +content : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ipsam, vero, provident, eum eligendi blanditiis ex explicabo vitae nostrum facilis asperiores dolorem illo officiis ratione vel fugiat dicta laboriosam labore adipisci. +enable_maps : true +mapLatitude : 51.5223477 +mapLongitude: -0.1622023 +contactDetails : + - icon : tf-map-pin + info : "Khaja Road, Bayzid, Chittagong, Bangladesh" + + - icon : tf-ion-ios-telephone-outline + info : "Phone: +880-31-000-000" + + - icon : tf-ion-iphone + info : "Fax: +880-31-000-000" + + - icon : tf-ion-ios-email-outline + info : "Email: hello@meghna.com" + \ No newline at end of file diff --git a/data/en/blog.yml b/data/en/blog.yml new file mode 100644 index 0000000..a4bb2b8 --- /dev/null +++ b/data/en/blog.yml @@ -0,0 +1,2 @@ +heading : Latest +headingSpan : Posts diff --git a/data/pl/blog.yml b/data/pl/blog.yml new file mode 100644 index 0000000..36b48e0 --- /dev/null +++ b/data/pl/blog.yml @@ -0,0 +1,2 @@ +heading : Najnowsze +headingSpan : wpisy diff --git a/data/portfolio.yml b/data/portfolio.yml new file mode 100644 index 0000000..fcc07ba --- /dev/null +++ b/data/portfolio.yml @@ -0,0 +1,76 @@ +enable : true +heading : Our +headingSpan : Works +filterList : + - filterType : photography + filterTitle : Photography + + - filterType : design + filterTitle : Design + + - filterType : development + filterTitle : Development + +portfolioItem : + - types : design + image : images/portfolio/portfolio-1.jpg + icon : tf-ion-android-search + URL : # + title : Tag Design + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! + + - types : development + image : images/portfolio/portfolio-2.jpg + icon : tf-ion-android-search + URL : # + title : Sound system + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! + + - types : design, development + image : images/portfolio/portfolio-3.jpg + icon : tf-ion-android-search + URL : # + title : Clock Product + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! + + - types : photography, development + image : images/portfolio/portfolio-4.jpg + icon : tf-ion-android-search + URL : # + title : Bottol Label + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! + + - types : design + image : images/portfolio/portfolio-5.jpg + icon : tf-ion-android-search + URL : # + title : Shopping Bag + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! + + - types : photography + image : images/portfolio/portfolio-6.jpg + icon : tf-ion-android-search + URL : # + title : Tag Design + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! + + - types : development + image : images/portfolio/portfolio-7.jpg + icon : tf-ion-android-search + URL : # + title : Business Card + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! + + - types : design, development + image : images/portfolio/portfolio-8.jpg + icon : tf-ion-android-search + URL : # + title : Stationary Design + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! + + - types : design, photography + image : images/portfolio/portfolio-2.jpg + icon : tf-ion-android-search + URL : # + title : Tag Design + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! \ No newline at end of file diff --git a/data/pricing.yml b/data/pricing.yml new file mode 100644 index 0000000..e2cae5f --- /dev/null +++ b/data/pricing.yml @@ -0,0 +1,55 @@ +enable : true +heading : Our Greatest +headingSpan : Plans +pricingTable : + - title : Free + price : $99 + time : month + btnURL : # + btnText : Signup + plan : + - planDetails : 1GB Disk Space + - planDetails : 10 Email Account + - planDetails : Script Installer + - planDetails : 1 GB Storage + - planDetails : 10 GB Bandwidth + - planDetails : 24/7 Tech Support + + - title : Silver + price : $149 + time : month + btnURL : # + btnText : Signup + plan : + - planDetails : 1GB Disk Space + - planDetails : 10 Email Account + - planDetails : Script Installer + - planDetails : 1 GB Storage + - planDetails : 10 GB Bandwidth + - planDetails : 24/7 Tech Support + + - title : Gold + price : $199 + time : month + btnURL : # + btnText : Signup + plan : + - planDetails : 1GB Disk Space + - planDetails : 10 Email Account + - planDetails : Script Installer + - planDetails : 1 GB Storage + - planDetails : 10 GB Bandwidth + - planDetails : 24/7 Tech Support + + - title : Platinum + price : $299 + time : month + btnURL : # + btnText : Signup + plan : + - planDetails : 1GB Disk Space + - planDetails : 10 Email Account + - planDetails : Script Installer + - planDetails : 1 GB Storage + - planDetails : 10 GB Bandwidth + - planDetails : 24/7 Tech Support \ No newline at end of file diff --git a/data/service.yml b/data/service.yml new file mode 100644 index 0000000..f18c705 --- /dev/null +++ b/data/service.yml @@ -0,0 +1,27 @@ +enable : true +heading : Our +headingSpan : Services +serviceItem : + - icon : tf-globe + title : WordPress Theme + content : Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus.Nullam iaculis arcu at mauris dapibus consectetur. + + - icon : tf-ion-laptop + title : Responsive Design + content : Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus.Nullam iaculis arcu at mauris dapibus consectetur. + + - icon : tf-genius + title : Media & Advertisement + content : Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus.Nullam iaculis arcu at mauris dapibus consectetur. + + - icon : tf-dial + title : Graphic Design + content : Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus.Nullam iaculis arcu at mauris dapibus consectetur. + + - icon : tf-target3 + title : Apps Development + content : Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus.Nullam iaculis arcu at mauris dapibus consectetur. + + - icon : tf-lifesaver + title : Networking + content : Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus.Nullam iaculis arcu at mauris dapibus consectetur. \ No newline at end of file diff --git a/data/skill.yml b/data/skill.yml new file mode 100644 index 0000000..b9f0142 --- /dev/null +++ b/data/skill.yml @@ -0,0 +1,26 @@ +enable : true +heading : Our +headingSpan : Skills +title : We’ve skilled in wide range of web and Other digital market tools. +content : Lorem, ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis magni explicabo cum aperiam recusandae sunt accusamus totam. Quidem quos fugiat sapiente numquam accusamus quas hic, itaque in libero reiciendis tempora! +image : images/about/company-growth.png +skillItem : + - itemNumber : 01- + itemName : Business Development + itemPercent : 90% + + - itemNumber : 02- + itemName : Analysis + itemPercent : 70% + + - itemNumber : 03- + itemName : Design + itemPercent : 80% + + - itemNumber : 04- + itemName : IOS Development + itemPercent : 95% + + - itemNumber : 05- + itemName : Andriod Development + itemPercent : 75% \ No newline at end of file diff --git a/data/team.yml b/data/team.yml new file mode 100644 index 0000000..5805927 --- /dev/null +++ b/data/team.yml @@ -0,0 +1,59 @@ +enable : true +heading : Our +headingSpan : Team +teamMember : + - image : images/team/team-1.jpg + name : Abul Mal Muhit + designation : CEO/Founder + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. + socialIcon : + - icon : tf-ion-social-facebook + url : "#" + - icon : tf-ion-social-twitter + url : "#" + - icon : tf-ion-social-linkedin + url : "#" + - icon : tf-ion-social-dribbble-outline + url : "#" + + - image : images/team/team-2.jpg + name : Frank Miller + designation : Manager + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. + socialIcon : + - icon : tf-ion-social-facebook + url : "#" + - icon : tf-ion-social-twitter + url : "#" + - icon : tf-ion-social-linkedin + url : "#" + - icon : tf-ion-social-dribbble-outline + url : "#" + + - image : images/team/team-3.jpg + name : Michael Jonson + designation : Web Developer + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. + socialIcon : + - icon : tf-ion-social-facebook + url : "#" + - icon : tf-ion-social-twitter + url : "#" + - icon : tf-ion-social-linkedin + url : "#" + - icon : tf-ion-social-dribbble-outline + url : "#" + + - image : images/team/team-4.jpg + name : Mo. Kha. Alamgir + designation : SEO Specialist + description : Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. + socialIcon : + - icon : tf-ion-social-facebook + url : "#" + - icon : tf-ion-social-twitter + url : "#" + - icon : tf-ion-social-linkedin + url : "#" + - icon : tf-ion-social-dribbble-outline + url : "#" \ No newline at end of file diff --git a/data/testimonial.yml b/data/testimonial.yml new file mode 100644 index 0000000..645728d --- /dev/null +++ b/data/testimonial.yml @@ -0,0 +1,17 @@ +enable : true +bgImage : images/backgrounds/bg-2.jpg +testimonialItem : + - name : Jonathon Andrew + image : images/team/client-1.jpg + date : Dec 26, 2018 + content : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Praesentium minima ex, quia error, deserunt voluptatibus repellendus? Incidunt eligendi aliquam repellat molestias, vel sed optio rem odit quis ratione non consequuntur! + + - name : Jonathon Andrew + image : images/team/client-2.jpg + date : Dec 26, 2018 + content : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Praesentium minima ex, quia error, deserunt voluptatibus repellendus? Incidunt eligendi aliquam repellat molestias, vel sed optio rem odit quis ratione non consequuntur! + + - name : Jonathon Andrew + image : images/team/client-1.jpg + date : Dec 26, 2018 + content : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Praesentium minima ex, quia error, deserunt voluptatibus repellendus? Incidunt eligendi aliquam repellat molestias, vel sed optio rem odit quis ratione non consequuntur! \ No newline at end of file diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1 @@ + diff --git a/static/images/.gitattributes b/static/images/.gitattributes new file mode 100644 index 0000000..b5a5b9a --- /dev/null +++ b/static/images/.gitattributes @@ -0,0 +1,28 @@ +slider/hero-area.jpg filter=lfs diff=lfs merge=lfs -text +portfolio/portfolio-1.jpg filter=lfs diff=lfs merge=lfs -text +portfolio/portfolio-5.jpg filter=lfs diff=lfs merge=lfs -text +team/client-2.jpg filter=lfs diff=lfs merge=lfs -text +team/team-2.jpg filter=lfs diff=lfs merge=lfs -text +portfolio/portfolio-4.jpg filter=lfs diff=lfs merge=lfs -text +portfolio/portfolio-6.jpg filter=lfs diff=lfs merge=lfs -text +blog/blog-post-1.jpg filter=lfs diff=lfs merge=lfs -text +blog/blog-post-2.jpg filter=lfs diff=lfs merge=lfs -text +blog/user.jpg filter=lfs diff=lfs merge=lfs -text +portfolio/portfolio-7.jpg filter=lfs diff=lfs merge=lfs -text +portfolio/portfolio-8.jpg filter=lfs diff=lfs merge=lfs -text +team/author.jpg filter=lfs diff=lfs merge=lfs -text +about/about-business-man.jpg filter=lfs diff=lfs merge=lfs -text +backgrounds/bg-1.jpg filter=lfs diff=lfs merge=lfs -text +team/team-3.jpg filter=lfs diff=lfs merge=lfs -text +team/client-1.jpg filter=lfs diff=lfs merge=lfs -text +team/team-1.jpg filter=lfs diff=lfs merge=lfs -text +logos/our-client.jpg filter=lfs diff=lfs merge=lfs -text +portfolio/portfolio-2.jpg filter=lfs diff=lfs merge=lfs -text +portfolio/portfolio-3.jpg filter=lfs diff=lfs merge=lfs -text +team/team-4.jpg filter=lfs diff=lfs merge=lfs -text +backgrounds/bg-2.jpg filter=lfs diff=lfs merge=lfs -text +blog/blog-post-3.jpg filter=lfs diff=lfs merge=lfs -text +about/company-growth.png filter=lfs diff=lfs merge=lfs -text +blog/avatar.png filter=lfs diff=lfs merge=lfs -text +blog/meghna.png filter=lfs diff=lfs merge=lfs -text +logo.png filter=lfs diff=lfs merge=lfs -text diff --git a/static/images/about/about-business-man.jpg b/static/images/about/about-business-man.jpg new file mode 100644 index 0000000..e8af8e5 --- /dev/null +++ b/static/images/about/about-business-man.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d5a53fcfe1dc6f9f49f7856cc3c79753313e71dda68b5059046819586c20307 +size 152693 diff --git a/static/images/about/company-growth.png b/static/images/about/company-growth.png new file mode 100644 index 0000000..0dcfee4 --- /dev/null +++ b/static/images/about/company-growth.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd3797f573d070f3d262dd7e40c9594ee1b6a29032e966ba436e6fa18123c63 +size 25143 diff --git a/static/images/backgrounds/bg-1.jpg b/static/images/backgrounds/bg-1.jpg new file mode 100644 index 0000000..78d11cd --- /dev/null +++ b/static/images/backgrounds/bg-1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9fe1c7977b9d7a69c84efde0dde80f0f739f0c653c8dc00507d4a36b4bae0d0 +size 282670 diff --git a/static/images/backgrounds/bg-2.jpg b/static/images/backgrounds/bg-2.jpg new file mode 100644 index 0000000..215965d --- /dev/null +++ b/static/images/backgrounds/bg-2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68dfd84b71fd779da1b5b317899d4c17fa275572b39be657a81b251ab1f03e2 +size 112865 diff --git a/static/images/blog/avatar.png b/static/images/blog/avatar.png new file mode 100644 index 0000000..bd45bbe --- /dev/null +++ b/static/images/blog/avatar.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a5df17864cee9a6f6f367c8bfbb7b120a622496251a694a714af417dd9b3d2 +size 24907 diff --git a/static/images/blog/blog-post-1.jpg b/static/images/blog/blog-post-1.jpg new file mode 100644 index 0000000..8c16501 --- /dev/null +++ b/static/images/blog/blog-post-1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f39a3857baaf4bbb70c3a47d8569d72df1df42a501ed2043af4f20b0909408a +size 30225 diff --git a/static/images/blog/blog-post-2.jpg b/static/images/blog/blog-post-2.jpg new file mode 100644 index 0000000..bf75981 --- /dev/null +++ b/static/images/blog/blog-post-2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fbd2fd0a05c12f2a524508c4abd07a7a08e8aa27f6d2f0d4c21aed853ab7e61 +size 49397 diff --git a/static/images/blog/blog-post-3.jpg b/static/images/blog/blog-post-3.jpg new file mode 100644 index 0000000..27bbc08 --- /dev/null +++ b/static/images/blog/blog-post-3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819a0045ad9d4fcadb3ee20585bb13e4238138b91d92e92fef66044f9c805c7e +size 31783 diff --git a/static/images/blog/meghna.png b/static/images/blog/meghna.png new file mode 100644 index 0000000..edeb8f6 --- /dev/null +++ b/static/images/blog/meghna.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95bf447e279368453c647e6d52a96cf45ab10b7f5504af29b6dda64c134c7a40 +size 90886 diff --git a/static/images/blog/user.jpg b/static/images/blog/user.jpg new file mode 100644 index 0000000..c1b0080 --- /dev/null +++ b/static/images/blog/user.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd0ceb322412505675d4ff00745cbe7c3e61834e5465b5e400f9c4b91848018e +size 966 diff --git a/static/images/logo.png b/static/images/logo.png new file mode 100644 index 0000000..c6efa18 --- /dev/null +++ b/static/images/logo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db1f59445c0b083da691fca879ed04f2a405670b9faaa90d8563aba52e7315c8 +size 1042 diff --git a/static/images/logos/our-client.jpg b/static/images/logos/our-client.jpg new file mode 100644 index 0000000..cadcd87 --- /dev/null +++ b/static/images/logos/our-client.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aef3e2465de9147ccb42ba7d3d56d39ae0180fdd0eeef6fd720df687c4159f5 +size 2269 diff --git a/static/images/portfolio/portfolio-1.jpg b/static/images/portfolio/portfolio-1.jpg new file mode 100644 index 0000000..9482064 --- /dev/null +++ b/static/images/portfolio/portfolio-1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e4fbf215409c38118edf923bcb39653046fc086ddcd7bb8a66d2dd761d2d7d2 +size 149434 diff --git a/static/images/portfolio/portfolio-2.jpg b/static/images/portfolio/portfolio-2.jpg new file mode 100644 index 0000000..fa0965a --- /dev/null +++ b/static/images/portfolio/portfolio-2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4934b3fcbae3256e34b49bd13158e88115bbe9956ac42a2f698df8f68ba1210 +size 57286 diff --git a/static/images/portfolio/portfolio-3.jpg b/static/images/portfolio/portfolio-3.jpg new file mode 100644 index 0000000..43f31ec --- /dev/null +++ b/static/images/portfolio/portfolio-3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408ea027dcbc27ae1e42ce5ae14ad7e62b083687b9652b0654c3463dd6f4fe54 +size 73350 diff --git a/static/images/portfolio/portfolio-4.jpg b/static/images/portfolio/portfolio-4.jpg new file mode 100644 index 0000000..4d62e77 --- /dev/null +++ b/static/images/portfolio/portfolio-4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:664c8eb075c3ae63b44d6a479ecbf0a7db83c6df83ec5485f364655bcabf404c +size 45263 diff --git a/static/images/portfolio/portfolio-5.jpg b/static/images/portfolio/portfolio-5.jpg new file mode 100644 index 0000000..4545f73 --- /dev/null +++ b/static/images/portfolio/portfolio-5.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a0e9fef57cef9d364f361d66f21bf9235f4e0cda53b77ca4f53ce1a70f179cc +size 52213 diff --git a/static/images/portfolio/portfolio-6.jpg b/static/images/portfolio/portfolio-6.jpg new file mode 100644 index 0000000..542197d --- /dev/null +++ b/static/images/portfolio/portfolio-6.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0103695086d463588fab43f1eb26adf9d687dbbc7e7badeaab0c578dc58fd61a +size 50249 diff --git a/static/images/portfolio/portfolio-7.jpg b/static/images/portfolio/portfolio-7.jpg new file mode 100644 index 0000000..976e9fd --- /dev/null +++ b/static/images/portfolio/portfolio-7.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418356db60ecd32f85fd0f50edb9676454aab0cc2c7f2c01fec3c5cb9da0fe6c +size 100889 diff --git a/static/images/portfolio/portfolio-8.jpg b/static/images/portfolio/portfolio-8.jpg new file mode 100644 index 0000000..4bc7a06 --- /dev/null +++ b/static/images/portfolio/portfolio-8.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a057e933a205480e53bbd5d23799c106885b83e3deacfe2187e658cee41cd388 +size 166683 diff --git a/static/images/slider/hero-area.jpg b/static/images/slider/hero-area.jpg new file mode 100644 index 0000000..6b00c65 --- /dev/null +++ b/static/images/slider/hero-area.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3d65c97856d58b2dabe4d7d5b14622fc8f2197c414d433924f21e9ff033137f +size 218749 diff --git a/static/images/team/author.jpg b/static/images/team/author.jpg new file mode 100644 index 0000000..f2a7070 --- /dev/null +++ b/static/images/team/author.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161b8cad9891dc81fd57b4b997e073425fde21acded22220ccf5a35fb5840230 +size 1917 diff --git a/static/images/team/client-1.jpg b/static/images/team/client-1.jpg new file mode 100644 index 0000000..9880322 --- /dev/null +++ b/static/images/team/client-1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4883d37637d5e350d2bd5bc8d3bef8255f4311028be5fd7b22877853a52ce7 +size 56605 diff --git a/static/images/team/client-2.jpg b/static/images/team/client-2.jpg new file mode 100644 index 0000000..c1651a3 --- /dev/null +++ b/static/images/team/client-2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6fa874ef0adbde6678e0e1b73adc45155e490e6e5bb107689e875ceffea7c77 +size 33958 diff --git a/static/images/team/team-1.jpg b/static/images/team/team-1.jpg new file mode 100644 index 0000000..2bd2b12 --- /dev/null +++ b/static/images/team/team-1.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e6602448483448cc82a27d2ed9b9ca50fba91e82d236753ff0d140c63daa97 +size 53320 diff --git a/static/images/team/team-2.jpg b/static/images/team/team-2.jpg new file mode 100644 index 0000000..da9c7d6 --- /dev/null +++ b/static/images/team/team-2.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfeecfb8cc8bc0b76f06aee7f537769add4cadeae4662662e9d136e2e81a1fc9 +size 52875 diff --git a/static/images/team/team-3.jpg b/static/images/team/team-3.jpg new file mode 100644 index 0000000..b3ee22b --- /dev/null +++ b/static/images/team/team-3.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc478fd501120eda4fd3f30698034d831e1327da10a18f4ff54180d5065afc2 +size 52680 diff --git a/static/images/team/team-4.jpg b/static/images/team/team-4.jpg new file mode 100644 index 0000000..eab0e3a --- /dev/null +++ b/static/images/team/team-4.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f1616051b470f25de916c133ff7d381934d80b7044176a869e9753951cba86 +size 52461 diff --git a/staticman.yml b/staticman.yml new file mode 100644 index 0000000..83aa8b8 --- /dev/null +++ b/staticman.yml @@ -0,0 +1,77 @@ +# Name of the property. You can have multiple properties with completely +# different config blocks for different sections of your site. +# For example, you can have one property to handle comment submission and +# another one to handle posts. +comments: + # (*) REQUIRED + # + # Names of the fields the form is allowed to submit. If a field that is + # not here is part of the request, an error will be thrown. + allowedFields: ["name", "email", "message", "reply_to"] + + # (*) REQUIRED + # + # Name of the branch being used. Must match the one sent in the URL of the + # request. + branch: "master" + + # Text to use as the commit message or pull request title. Accepts placeholders. + commitMessage: "Add Staticman data" + + # (*) REQUIRED + # + # Destination path (filename) for the data files. Accepts placeholders. + filename: "entry{@timestamp}" + + # The format of the generated data files. Accepted values are "json", "yaml" + # or "frontmatter" + format: "yaml" + + # List of fields to be populated automatically by Staticman and included in + # the data file. Keys are the name of the field. The value can be an object + # with a `type` property, which configures the generated field, or any value + # to be used directly (e.g. a string, number or array) + generatedFields: + date: + type: date + options: + format: "timestamp-seconds" + + # Whether entries need to be appproved before they are published to the main + # branch. If set to `true`, a pull request will be created for your approval. + # Otherwise, entries will be published to the main branch automatically. + moderation: true + + # Name of the site. Used in notification emails. + name: "Meghna Theme" + + # Notification settings. When enabled, users can choose to receive notifications + # via email when someone adds a reply or a new comment. This requires an account + # with Mailgun, which you can get for free at http://mailgun.com. + #notifications: + # Enable notifications + #enabled: true + + # (!) ENCRYPTED + # + # Mailgun API key + #apiKey: "1q2w3e4r" + + # (!) ENCRYPTED + # + # Mailgun domain (encrypted) + #domain: "4r3e2w1q" + + # (*) REQUIRED + # + # Destination path (directory) for the data files. Accepts placeholders. + path: "data/comments/{options.slug}" + + # Names of required fields. If any of these isn't in the request or is empty, + # an error will be thrown. + requiredFields: ["name", "email", "message"] + + # List of transformations to apply to any of the fields supplied. Keys are + # the name of the field and values are possible transformation types. + transforms: + email: md5 diff --git a/themes/meghna-hugo b/themes/meghna-hugo new file mode 160000 index 0000000..ad9c341 --- /dev/null +++ b/themes/meghna-hugo @@ -0,0 +1 @@ +Subproject commit ad9c34135b8c22b9799760320456a170b28c1932