├── .gitignore ├── .hugo_build.lock ├── LICENSE ├── README.md ├── archetypes └── default.md ├── assets ├── css │ └── style.css └── js │ └── script.js ├── exampleSite ├── .hugo_build.lock ├── config │ └── _default │ │ ├── hugo.toml │ │ ├── languages.toml │ │ ├── menus.en.toml │ │ ├── menus.fr.toml │ │ └── params.toml ├── content │ ├── english │ │ ├── about │ │ │ └── _index.en.md │ │ ├── blog │ │ │ ├── _index.en.md │ │ │ ├── are-you-doing-the-right-way.en.md │ │ │ ├── are-you-doing-the-right-way.fr.md │ │ │ ├── blog-photos-on-phone.en.md │ │ │ ├── blog-photos-on-phone.md │ │ │ ├── installation.md │ │ │ ├── something-i-need-to-tell-you.md │ │ │ ├── ten-things-about-business.md │ │ │ ├── the-nourish-box-august.md │ │ │ ├── this-show-has-divided.md │ │ │ └── why-you-need-a-statement-bag-this-season.md │ │ ├── contact │ │ │ └── _index.en.md │ │ ├── portfolio │ │ │ └── _index.en.md │ │ └── service │ │ │ └── _index.en.md │ └── french │ │ ├── about │ │ └── _index.fr.md │ │ ├── blog │ │ ├── _index.fr.md │ │ ├── are-you-doing-the-right-way.en.md │ │ ├── are-you-doing-the-right-way.fr.md │ │ ├── blog-photos-on-phone.en.md │ │ ├── blog-photos-on-phone.md │ │ ├── installation.md │ │ ├── something-i-need-to-tell-you.md │ │ ├── ten-things-about-business.md │ │ ├── the-nourish-box-august.md │ │ ├── this-show-has-divided.md │ │ └── why-you-need-a-statement-bag-this-season.md │ │ ├── contact │ │ └── _index.fr.md │ │ ├── portfolio │ │ └── _index.en.md │ │ └── service │ │ └── _index.en.md ├── data │ ├── en │ │ ├── about.yml │ │ ├── clients.yml │ │ ├── feature.yml │ │ ├── philosophy.yml │ │ ├── portfolio.yml │ │ ├── pricing.yml │ │ ├── service.yml │ │ ├── team.yml │ │ ├── testimonial.yml │ │ └── workingprocess.yml │ └── fr │ │ ├── about.yml │ │ ├── clients.yml │ │ ├── feature.yml │ │ ├── philosophy.yml │ │ ├── portfolio.yml │ │ ├── pricing.yml │ │ ├── service.yml │ │ ├── team.yml │ │ ├── testimonial.yml │ │ └── workingprocess.yml ├── hugo.toml ├── i18n │ ├── en.toml │ └── fr.toml ├── public │ ├── css │ │ └── style.min.css │ ├── en │ │ ├── 404.html │ │ ├── about │ │ │ ├── index.html │ │ │ └── index.xml │ │ ├── blog │ │ │ ├── are-you-doing-the-right-way │ │ │ │ └── index.html │ │ │ ├── blog-photos-on-phone │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ ├── installation │ │ │ │ └── index.html │ │ │ ├── page │ │ │ │ ├── 1 │ │ │ │ │ └── index.html │ │ │ │ └── 2 │ │ │ │ │ └── index.html │ │ │ ├── something-i-need-to-tell-you │ │ │ │ └── index.html │ │ │ ├── ten-things-about-business │ │ │ │ └── index.html │ │ │ ├── the-nourish-box-august │ │ │ │ └── index.html │ │ │ ├── this-show-has-divided │ │ │ │ └── index.html │ │ │ └── why-you-need-a-statement-bag-this-season │ │ │ │ └── index.html │ │ ├── categories │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── contact │ │ │ ├── index.html │ │ │ └── index.xml │ │ ├── index.html │ │ ├── index.xml │ │ ├── portfolio │ │ │ ├── index.html │ │ │ └── index.xml │ │ ├── service │ │ │ ├── index.html │ │ │ └── index.xml │ │ ├── sitemap.xml │ │ └── tags │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── fr │ │ ├── 404.html │ │ ├── about │ │ │ ├── index.html │ │ │ └── index.xml │ │ ├── blog │ │ │ ├── are-you-doing-the-right-way │ │ │ │ └── index.html │ │ │ ├── blog-photos-on-phone │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ ├── installation │ │ │ │ └── index.html │ │ │ ├── page │ │ │ │ ├── 1 │ │ │ │ │ └── index.html │ │ │ │ └── 2 │ │ │ │ │ └── index.html │ │ │ ├── something-i-need-to-tell-you │ │ │ │ └── index.html │ │ │ ├── ten-things-about-business │ │ │ │ └── index.html │ │ │ ├── the-nourish-box-august │ │ │ │ └── index.html │ │ │ ├── this-show-has-divided │ │ │ │ └── index.html │ │ │ └── why-you-need-a-statement-bag-this-season │ │ │ │ └── index.html │ │ ├── categories │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── contact │ │ │ ├── index.html │ │ │ └── index.xml │ │ ├── index.html │ │ ├── index.xml │ │ ├── sitemap.xml │ │ └── tags │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── images │ │ ├── about │ │ │ ├── about-1.jpg │ │ │ ├── about-2.jpg │ │ │ ├── about-2.png │ │ │ ├── about-header.jpg │ │ │ └── member.jpg │ │ ├── blog │ │ │ ├── post-1.jpg │ │ │ ├── post-2.jpg │ │ │ └── post-3.jpg │ │ ├── call-to-action │ │ │ ├── call-to-action-bg-2.jpg │ │ │ └── call-to-action-bg.jpg │ │ ├── client-logo │ │ │ ├── clients-1.jpg │ │ │ ├── clients-2.jpg │ │ │ ├── logo-2.png │ │ │ ├── logo-3.png │ │ │ ├── logo-4.png │ │ │ ├── logo-5.png │ │ │ └── logo1.png │ │ ├── company │ │ │ ├── company-image-2.jpg │ │ │ ├── company-image-3.jpg │ │ │ └── company-image.jpg │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── logo.png │ │ ├── logos │ │ │ ├── lang-de.gif │ │ │ ├── lang-en.gif │ │ │ ├── lang-fr.gif │ │ │ └── lang-nl.gif │ │ ├── marker.png │ │ ├── portfolio │ │ │ ├── portfolio-1.jpg │ │ │ ├── portfolio-2.jpg │ │ │ ├── portfolio-3.jpg │ │ │ ├── portfolio-4.jpg │ │ │ ├── portfolio-5.jpg │ │ │ ├── portfolio-6.jpg │ │ │ ├── portfolio-7.jpg │ │ │ └── portfolio-8.jpg │ │ ├── pricing-bg.jpg │ │ ├── slider │ │ │ └── video-player-thumb.jpg │ │ └── team │ │ │ ├── member-1.jpg │ │ │ ├── member-2.jpg │ │ │ ├── member-3.jpg │ │ │ └── member-4.jpg │ ├── index.html │ ├── js │ │ └── script.min.js │ ├── plugins │ │ ├── bootstrap │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ │ └── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── popper.min.js │ │ ├── filterzr │ │ │ └── jquery.filterizr.min.js │ │ ├── jquery │ │ │ └── dist │ │ │ │ └── jquery.min.js │ │ ├── lightbox2 │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ └── lightbox.min.css │ │ │ │ ├── images │ │ │ │ ├── close.png │ │ │ │ ├── loading.gif │ │ │ │ ├── next.png │ │ │ │ └── prev.png │ │ │ │ └── js │ │ │ │ └── lightbox.min.js │ │ ├── parallax │ │ │ └── jquery.parallax-1.1.3.js │ │ ├── slick-carousel │ │ │ └── slick │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── slick-theme.css │ │ │ │ ├── slick.css │ │ │ │ └── slick.min.js │ │ ├── smooth-scroll │ │ │ └── dist │ │ │ │ └── js │ │ │ │ └── smooth-scroll.min.js │ │ └── themefisher-font │ │ │ ├── fonts │ │ │ ├── themefisher-font.eot │ │ │ ├── themefisher-font.ttf │ │ │ └── themefisher-font.woff │ │ │ └── style.css │ ├── robots.txt │ └── sitemap.xml └── static │ └── images │ ├── about │ ├── about-1.jpg │ ├── about-2.jpg │ ├── about-2.png │ ├── about-header.jpg │ └── member.jpg │ ├── blog │ ├── post-1.jpg │ ├── post-2.jpg │ └── post-3.jpg │ ├── call-to-action │ ├── call-to-action-bg-2.jpg │ └── call-to-action-bg.jpg │ ├── client-logo │ ├── clients-1.jpg │ ├── clients-2.jpg │ ├── logo-2.png │ ├── logo-3.png │ ├── logo-4.png │ ├── logo-5.png │ └── logo1.png │ ├── company │ ├── company-image-2.jpg │ ├── company-image-3.jpg │ └── company-image.jpg │ ├── favicon.ico │ ├── favicon.png │ ├── logo.png │ ├── logos │ ├── lang-de.gif │ ├── lang-en.gif │ ├── lang-fr.gif │ └── lang-nl.gif │ ├── marker.png │ ├── portfolio │ ├── portfolio-1.jpg │ ├── portfolio-2.jpg │ ├── portfolio-3.jpg │ ├── portfolio-4.jpg │ ├── portfolio-5.jpg │ ├── portfolio-6.jpg │ ├── portfolio-7.jpg │ └── portfolio-8.jpg │ ├── pricing-bg.jpg │ ├── slider │ └── video-player-thumb.jpg │ └── team │ ├── member-1.jpg │ ├── member-2.jpg │ ├── member-3.jpg │ └── member-4.jpg ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── list.html │ └── single.html ├── about │ └── list.html ├── contact │ └── list.html ├── index.html ├── partials │ ├── about-sm.html │ ├── about.html │ ├── blog.html │ ├── clients.html │ ├── contact.html │ ├── cta.html │ ├── feature.html │ ├── flags.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── hero.html │ ├── page-title.html │ ├── philosophy.html │ ├── portfolio.html │ ├── preloader.html │ ├── pricing.html │ ├── service.html │ ├── team.html │ ├── testimonial.html │ └── workingprocess.html ├── portfolio │ └── list.html └── service │ └── list.html ├── netlify.toml ├── package-lock.json ├── package.json ├── public ├── css │ └── style.min.css ├── en │ ├── 404.html │ ├── about │ │ ├── index.html │ │ └── index.xml │ ├── blog │ │ ├── are-you-doing-the-right-way │ │ │ └── index.html │ │ ├── blog-photos-on-phone │ │ │ └── index.html │ │ ├── index.html │ │ ├── index.xml │ │ ├── installation │ │ │ └── index.html │ │ ├── page │ │ │ ├── 1 │ │ │ │ └── index.html │ │ │ └── 2 │ │ │ │ └── index.html │ │ ├── something-i-need-to-tell-you │ │ │ └── index.html │ │ ├── ten-things-about-business │ │ │ └── index.html │ │ ├── the-nourish-box-august │ │ │ └── index.html │ │ ├── this-show-has-divided │ │ │ └── index.html │ │ └── why-you-need-a-statement-bag-this-season │ │ │ └── index.html │ ├── categories │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── contact │ │ ├── index.html │ │ └── index.xml │ ├── index.html │ ├── index.xml │ ├── portfolio │ │ ├── index.html │ │ └── index.xml │ ├── service │ │ ├── index.html │ │ └── index.xml │ ├── sitemap.xml │ └── tags │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ └── 1 │ │ └── index.html ├── fr │ ├── 404.html │ ├── about │ │ ├── index.html │ │ └── index.xml │ ├── blog │ │ ├── are-you-doing-the-right-way │ │ │ └── index.html │ │ ├── blog-photos-on-phone │ │ │ └── index.html │ │ ├── index.html │ │ ├── index.xml │ │ ├── installation │ │ │ └── index.html │ │ ├── page │ │ │ ├── 1 │ │ │ │ └── index.html │ │ │ └── 2 │ │ │ │ └── index.html │ │ ├── something-i-need-to-tell-you │ │ │ └── index.html │ │ ├── ten-things-about-business │ │ │ └── index.html │ │ ├── the-nourish-box-august │ │ │ └── index.html │ │ ├── this-show-has-divided │ │ │ └── index.html │ │ └── why-you-need-a-statement-bag-this-season │ │ │ └── index.html │ ├── categories │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── contact │ │ ├── index.html │ │ └── index.xml │ ├── index.html │ ├── index.xml │ ├── portfolio │ │ ├── index.html │ │ └── index.xml │ ├── service │ │ ├── index.html │ │ └── index.xml │ ├── sitemap.xml │ └── tags │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ └── 1 │ │ └── index.html ├── images │ ├── about │ │ ├── about-1.jpg │ │ ├── about-2.jpg │ │ ├── about-2.png │ │ ├── about-header.jpg │ │ └── member.jpg │ ├── blog │ │ ├── post-1.jpg │ │ ├── post-2.jpg │ │ └── post-3.jpg │ ├── call-to-action │ │ ├── call-to-action-bg-2.jpg │ │ └── call-to-action-bg.jpg │ ├── client-logo │ │ ├── clients-1.jpg │ │ ├── clients-2.jpg │ │ ├── logo-2.png │ │ ├── logo-3.png │ │ ├── logo-4.png │ │ ├── logo-5.png │ │ └── logo1.png │ ├── company │ │ ├── company-image-2.jpg │ │ ├── company-image-3.jpg │ │ └── company-image.jpg │ ├── favicon.ico │ ├── favicon.png │ ├── logo.png │ ├── logos │ │ ├── lang-de.gif │ │ ├── lang-en.gif │ │ ├── lang-fr.gif │ │ └── lang-nl.gif │ ├── marker.png │ ├── portfolio │ │ ├── portfolio-1.jpg │ │ ├── portfolio-2.jpg │ │ ├── portfolio-3.jpg │ │ ├── portfolio-4.jpg │ │ ├── portfolio-5.jpg │ │ ├── portfolio-6.jpg │ │ ├── portfolio-7.jpg │ │ └── portfolio-8.jpg │ ├── pricing-bg.jpg │ ├── slider │ │ └── video-player-thumb.jpg │ └── team │ │ ├── member-1.jpg │ │ ├── member-2.jpg │ │ ├── member-3.jpg │ │ └── member-4.jpg ├── index.html ├── js │ └── script.min.js ├── plugins │ ├── bootstrap │ │ └── dist │ │ │ ├── css │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ └── popper.min.js │ ├── filterzr │ │ └── jquery.filterizr.min.js │ ├── jquery │ │ └── dist │ │ │ └── jquery.min.js │ ├── lightbox2 │ │ └── dist │ │ │ ├── css │ │ │ └── lightbox.min.css │ │ │ ├── images │ │ │ ├── close.png │ │ │ ├── loading.gif │ │ │ ├── next.png │ │ │ └── prev.png │ │ │ └── js │ │ │ └── lightbox.min.js │ ├── parallax │ │ └── jquery.parallax-1.1.3.js │ ├── slick-carousel │ │ └── slick │ │ │ ├── ajax-loader.gif │ │ │ ├── slick-theme.css │ │ │ ├── slick.css │ │ │ └── slick.min.js │ ├── smooth-scroll │ │ └── dist │ │ │ └── js │ │ │ └── smooth-scroll.min.js │ └── themefisher-font │ │ ├── fonts │ │ ├── themefisher-font.eot │ │ ├── themefisher-font.ttf │ │ └── themefisher-font.woff │ │ └── style.css ├── robots.txt └── sitemap.xml ├── scripts ├── projectSetup.js └── themeSetup.js ├── static └── plugins │ ├── bootstrap │ └── dist │ │ ├── css │ │ └── bootstrap.min.css │ │ └── js │ │ ├── bootstrap.min.js │ │ └── popper.min.js │ ├── filterzr │ └── jquery.filterizr.min.js │ ├── jquery │ └── dist │ │ └── jquery.min.js │ ├── lightbox2 │ └── dist │ │ ├── css │ │ └── lightbox.min.css │ │ ├── images │ │ ├── close.png │ │ ├── loading.gif │ │ ├── next.png │ │ └── prev.png │ │ └── js │ │ └── lightbox.min.js │ ├── parallax │ └── jquery.parallax-1.1.3.js │ ├── slick-carousel │ └── slick │ │ ├── ajax-loader.gif │ │ ├── slick-theme.css │ │ ├── slick.css │ │ └── slick.min.js │ ├── smooth-scroll │ └── dist │ │ └── js │ │ └── smooth-scroll.min.js │ └── themefisher-font │ ├── fonts │ ├── themefisher-font.eot │ ├── themefisher-font.ttf │ └── themefisher-font.woff │ └── style.css └── theme.toml /.gitignore: -------------------------------------------------------------------------------- 1 | public -------------------------------------------------------------------------------- /.hugo_build.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/.hugo_build.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 - Present, Gethugothemes 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 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /exampleSite/.hugo_build.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/.hugo_build.lock -------------------------------------------------------------------------------- /exampleSite/config/_default/hugo.toml: -------------------------------------------------------------------------------- 1 | baseURL = "https://demo.gethugothemes.com/navigator/examplesite/" 2 | languageCode = "en-us" 3 | title = "Navigator | Responsive Multipurpose Bootstrap Hugo Template" 4 | theme = "navigator-hugo" 5 | summaryLength = 10 6 | # Build robots.txt file 7 | enableRobotsTXT = true 8 | # google analytics tracking id 9 | googleAnalytics = "" # your analitics ID 10 | 11 | enableGitInfo = false 12 | pygmentsCodeFences = true 13 | 14 | # Multilangues setup 15 | # Renders the default content language in subdir, e.g. /en/. The root directory / will redirect to /en/ 16 | defaultContentLanguageInSubdir = true 17 | DefaultContentLanguage = "en" 18 | -------------------------------------------------------------------------------- /exampleSite/config/_default/languages.toml: -------------------------------------------------------------------------------- 1 | # -------------------------- 2 | # English language 3 | # -------------------------- 4 | [en] 5 | languageName = "En" 6 | languageCode = "en-us" 7 | contentDir = "content/english" 8 | weight = 1 9 | 10 | 11 | # ------------------------------------------------------------ 12 | # French language 13 | # ------------------------------------------------------------ 14 | [fr] 15 | languageName = "Fr" 16 | languageCode = "fr-fr" 17 | contentDir = "content/french" 18 | weight = 2 19 | -------------------------------------------------------------------------------- /exampleSite/config/_default/menus.en.toml: -------------------------------------------------------------------------------- 1 | # Navbar Menus 2 | [[nav]] 3 | name = "about" 4 | url = "about/" 5 | weight = 2 6 | [[nav]] 7 | name = "service" 8 | url = "service/" 9 | weight = 3 10 | [[nav]] 11 | name = "portfolio" 12 | url = "portfolio/" 13 | weight = 4 14 | [[nav]] 15 | name = "blog" 16 | url = "blog/" 17 | weight = 5 18 | [[nav]] 19 | name = "contact" 20 | url = "contact/" 21 | weight = 6 22 | 23 | # Footer Service Menu 24 | [[service]] 25 | name = "graphicdesign" 26 | url = "service/" 27 | weight = 1 28 | [[service]] 29 | name = "webdesign" 30 | url = "service/" 31 | weight = 2 32 | [[service]] 33 | name = "webdevelopment" 34 | url = "service/" 35 | weight = 3 36 | 37 | # Footer Quick links Menu 38 | [[quicklink]] 39 | name = "partners" 40 | url = "about/" 41 | weight = 1 42 | [[quicklink]] 43 | name = "about" 44 | url = "about/" 45 | weight = 2 46 | [[quicklink]] 47 | name = "faqs" 48 | url = "about/" 49 | weight = 3 50 | [[quicklink]] 51 | name = "badges" 52 | url = "about/" 53 | weight = 4 54 | -------------------------------------------------------------------------------- /exampleSite/config/_default/menus.fr.toml: -------------------------------------------------------------------------------- 1 | # Navbar Menus 2 | [[nav]] 3 | name = "about" 4 | url = "about/" 5 | weight = 2 6 | [[nav]] 7 | name = "service" 8 | url = "service/" 9 | weight = 3 10 | [[nav]] 11 | name = "portfolio" 12 | url = "portfolio/" 13 | weight = 4 14 | [[nav]] 15 | name = "blog" 16 | url = "blog/" 17 | weight = 5 18 | [[nav]] 19 | name = "contact" 20 | url = "contact/" 21 | weight = 6 22 | 23 | # Footer Service Menu 24 | [[service]] 25 | name = "graphicdesign" 26 | url = "service/" 27 | weight = 1 28 | [[service]] 29 | name = "webdesign" 30 | url = "service/" 31 | weight = 2 32 | [[service]] 33 | name = "webdevelopment" 34 | url = "service/" 35 | weight = 3 36 | 37 | # Footer Quick links Menu 38 | [[quicklink]] 39 | name = "partners" 40 | url = "about/" 41 | weight = 1 42 | [[quicklink]] 43 | name = "about" 44 | url = "about/" 45 | weight = 2 46 | [[quicklink]] 47 | name = "faqs" 48 | url = "about/" 49 | weight = 3 50 | [[quicklink]] 51 | name = "badges" 52 | url = "about/" 53 | weight = 4 54 | -------------------------------------------------------------------------------- /exampleSite/config/_default/params.toml: -------------------------------------------------------------------------------- 1 | logo = "images/logo.png" 2 | home = "Home" 3 | menufixed = true 4 | # contact form action 5 | contact_form_action = "sendmail.php" # contact form works with [https://airform.io/] or [https://formspree.io] 6 | 7 | footerDescription = "Integer posuere erat a ante venenati dapibus posuere velit aliquet. Fusce dapibus, tellus cursus commodo, tortor mauris sed posuere." 8 | footerServiceTitle = "Service" 9 | footerQuicklinkTitle = "Quicklinks" 10 | footerAboutTitle = "About" 11 | footerSubscribeTitle = "Subscribe" 12 | 13 | # Subscription 14 | [subscription] 15 | enable = true 16 | # mailchimp subsciption 17 | mailchimp_form_action = "https://gmail.us4.list-manage.com/subscribe/post?u=463ee871f45d2d93748e77cad&id=a0a2c6d074" # replace this url with yours 18 | mailchimp_form_name = "b_463ee871f45d2d93748e77cad_a0a2c6d074" -------------------------------------------------------------------------------- /exampleSite/content/english/about/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title : "About Us ..." 3 | date : 2018-07-07T12:37:52+06:00 4 | draft : false 5 | description: "This is meta description" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/english/blog/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "ENGLISH Blog" 3 | date: 2018-07-07T18:23:33+06:00 4 | description: "This is meta description" 5 | --- 6 | -------------------------------------------------------------------------------- /exampleSite/content/english/blog/are-you-doing-the-right-way.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Are You Doing the Right Way 3 | date: 2018-07-07T17:04:41+06:00 4 | image: images/blog/post-3.jpg 5 | author: Admin 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Introduction 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 12 | 13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 14 | 15 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 16 | -------------------------------------------------------------------------------- /exampleSite/content/english/blog/are-you-doing-the-right-way.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: FRANCAIS Are You Doing the Right Way 3 | date: 2018-07-07T17:04:41+06:00 4 | image: images/blog/post-3.jpg 5 | author: Admin 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Introduction 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 12 | 13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 14 | 15 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 16 | -------------------------------------------------------------------------------- /exampleSite/content/english/blog/blog-photos-on-phone.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Blog Photos on Phone" 3 | date: 2018-07-08T12:22:40+06:00 4 | image: images/blog/post-2.jpg 5 | author: Cersei Lannister 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Viral dreamcatcher keytar typewriter, aesthetic offal umami. 10 | 11 | Wellness spaces that reach neglected communities of color are essential, says spiritual advisor, mojo health advocate, and writer Anna Smith. As the 26-year-old Brooklyn native will tell you in her signature metaphysical-no-chaser way, when your mojo is in a bad place every aspect of your life is affected. She’s part of a growing effort to foster more inclusive healing spaces that take into account how racism, poverty, ableism, misogyny, and gender discrimination inform our self-care needs. Through harnessing the brujería that’s been passed down her Puerto Rican lineage over generations, offering private spiritual advisory sessions, and sharing 12 | -------------------------------------------------------------------------------- /exampleSite/content/english/blog/blog-photos-on-phone.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Blog Photos on Phone" 3 | date: 2018-07-08T12:22:40+06:00 4 | image: images/blog/post-2.jpg 5 | author: Cersei Lannister 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Viral dreamcatcher keytar typewriter, aesthetic offal umami. 10 | 11 | Wellness spaces that reach neglected communities of color are essential, says spiritual advisor, mojo health advocate, and writer Anna Smith. As the 26-year-old Brooklyn native will tell you in her signature metaphysical-no-chaser way, when your mojo is in a bad place every aspect of your life is affected. She’s part of a growing effort to foster more inclusive healing spaces that take into account how racism, poverty, ableism, misogyny, and gender discrimination inform our self-care needs. Through harnessing the brujería that’s been passed down her Puerto Rican lineage over generations, offering private spiritual advisory sessions, and sharing 12 | -------------------------------------------------------------------------------- /exampleSite/content/english/blog/installation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "How To Setup Navigator Hugo" 3 | date: 2018-07-08T12:22:40+06:00 4 | image: images/blog/post-2.jpg 5 | author: Cersei Lannister 6 | description: "This is meta description" 7 | --- 8 | 9 | ## Install this template by following those simple steps: 10 | 11 | ### STEP-1 : Hugo installation 12 | 13 | Check this link below for install hugo on your computer. 14 | [hugo install documentation](https://gohugo.io/getting-started/installing/) 15 | 16 | ### STEP-2 : Create your project 17 | 18 | Hugo provides a `new` command to create a new website. 19 | 20 | ``` 21 | hugo new site 22 | ``` 23 | 24 | ### STEP-3 : Install the theme 25 | Run this command 26 | ``` 27 | hugo new site navigator-hugo 28 | ``` 29 | and then go to the themes folder inside of navigator-hugo folder. You can also use this command ```cd navigator-hugo/themes``` for going to this folder. 30 | Then run the command 31 | ``` 32 | git clone git@github.com:themefisher/navigator-hugo.git 33 | ``` 34 | 35 | Alternatively, you can [download the theme as .zip](https://github.com/themefisher/navigator-hugo/archive/master.zip) file and extract it in the `themes` directory 36 | 37 | After that you need to go to the `navigator-hugo/exampleSite` folder and copy or cut all the elements, and now go back to the root folder and paste it here. 38 | 39 | open the command prompt again and run `cd ../` command for go back to the root folder. 40 | 41 | ### STEP-4 : Host locally 42 | 43 | Launching the website locally by using the following command: 44 | 45 | ``` 46 | hugo serve 47 | ``` 48 | 49 | Go to `http://localhost:1313` 50 | 51 | Or you can check this video documentation for installing this template: 52 | {{< youtube _atvEfndieg >}} 53 | 54 | ### STEP-5 : Basic configuration 55 | 56 | 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. 57 | 58 | ```toml 59 | # Change the default theme to be use when building the site with Hugo 60 | theme = "navigator-hugo" 61 | ``` 62 | 63 | ### STEP-6 : Create your first content pages 64 | 65 | ``` 66 | hugo new blog/post-name.md 67 | ``` 68 | 69 | ### STEP-7 : Build the website 70 | 71 | When your site is ready to deploy, run the following command: 72 | 73 | ``` 74 | hugo 75 | 76 | # You can also create a minified version by using this command: 77 | hugo--minify 78 | 79 | ``` 80 | 81 | A `public` folder will be generated, containing all static content and assets for your website. It can now be deployed on any web server. -------------------------------------------------------------------------------- /exampleSite/content/english/blog/something-i-need-to-tell-you.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Something I Need to Tell You 3 | date: 2018-07-07T17:04:02+06:00 4 | image: images/blog/post-2.jpg 5 | author: Jhonathan Ive 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Introduction 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 12 | 13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 14 | 15 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 16 | 17 | -------------------------------------------------------------------------------- /exampleSite/content/english/blog/ten-things-about-business.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ten Things About Business 3 | date: 2018-07-07T16:57:54+06:00 4 | image: images/blog/post-1.jpg 5 | author: John Snow 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Introduction 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 12 | 13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 14 | 15 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. -------------------------------------------------------------------------------- /exampleSite/content/english/blog/the-nourish-box-august.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "The Nourish Box August" 3 | date: 2018-07-08T12:20:58+06:00 4 | image: images/blog/post-1.jpg 5 | author: Sansa Stark 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Viral dreamcatcher keytar typewriter, aesthetic offal umami. 10 | 11 | Wellness spaces that reach neglected communities of color are essential, says spiritual advisor, mojo health advocate, and writer Anna Smith. As the 26-year-old Brooklyn native will tell you in her signature metaphysical-no-chaser way, when your mojo is in a bad place every aspect of your life is affected. She’s part of a growing effort to foster more inclusive healing spaces that take into account how racism, poverty, ableism, misogyny, and gender discrimination inform our self-care needs. Through harnessing the brujería that’s been passed down her Puerto Rican lineage over generations, offering private spiritual advisory sessions, and sharing 12 | -------------------------------------------------------------------------------- /exampleSite/content/english/blog/this-show-has-divided.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "This Show Has Divided" 3 | date: 2018-07-08T12:18:46+06:00 4 | image: images/blog/post-3.jpg 5 | author: Theon Greyjoy 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Chatting with the ancestors 10 | 11 | I always say my thanks to my ancestors and talk with them, with my guides. I talk to them about my day, what I want, what they need of me. I give my thanks to them for the day, even if I had a bad day. I let them know, ‘Thank you for making sure I ain’t die today, I survived through the fuck shit.It’s a big comfort to me to have that open line of communication because so many of my spirit guides are people who I knew in this lifetime who passed on, one being my father, one being my abuelita. It’s comforting to know even though they’re not here physically to do that anymore, they do it from the other side, for the ones I knew in this lifetime and the ones I didn’t. I’m able to say to myself, “Yo, I feel fucked up right now, but y’all always got me.” I know I’m fortunate to have that. 12 | 13 | It’s a big comfort to me to have that open line of communication because so many of my spirit guides are people who I knew in this lifetime who passed on, one being my father, one being my abuelita. It’s comforting to know even though they’re not here physically to do that anymore, they do it from the other side, for the ones I knew in this lifetime and the ones I didn’t. I’m able to say to myself, “Yo, I feel fucked up right now, but y’all always got me.” I know I’m fortunate to have that. 14 | 15 | It’s comforting to know even though they’re not here physically to do that anymore, they do it from the other side, for the ones I knew in this lifetime and the ones I didn’t. I’m able to say to myself, “Yo, I feel fucked up right now, but y’all always got me.” I know I’m fortunate to have that. -------------------------------------------------------------------------------- /exampleSite/content/english/blog/why-you-need-a-statement-bag-this-season.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Why You Need a Statement Bag 3 | date: 2018-07-08T12:11:29+06:00 4 | image: images/blog/post-2.jpg 5 | author: Arya Stark 6 | description: "This is meta description" 7 | --- 8 | ### A cleansing hot shower or bath 9 | 10 | I like to start with taking a shower or a bath when getting ready for bed. I’ll always incorporate either Himalayan pink salt or Epsom salt into my routine. Then, I’ll do an in-shower meditation, just releasing my day and allowing it to wash down the drain. I like to start from the neck down to symbolize washing and removing anything, and then I go from the feet up after to symbolize recharging my energy. 11 | 12 | ### Setting the mood with incense 13 | 14 | A lot of the times before bed I’ll pick a lavender or moon scent. I really like the scents from the brand HEM. Other times, if I’m needing to cleanse my space before bed, I like to use Frankincense & Myrrh incense because it’s really good at helping you feel sleepy time vibes. I have horrible insomnia so I’m somebody who really has to set my mood before going to bed. 15 | 16 | -------------------------------------------------------------------------------- /exampleSite/content/english/contact/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contact Us" 3 | date: 2018-07-07T15:53:27+06:00 4 | draft: false 5 | description: "This is meta description" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/english/portfolio/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Portfolio" 3 | date: 2018-07-07T15:45:06+06:00 4 | draft: false 5 | description: "This is meta description" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/english/service/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Our Services" 3 | date: 2018-07-07T14:53:13+06:00 4 | draft: false 5 | description: "This is meta description" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/french/about/_index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title : "A propos de nous ..." 3 | date : 2018-07-07T12:37:52+06:00 4 | draft : false 5 | description: "This is meta description" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/french/blog/_index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "FRANCAIS Blog" 3 | date: 2018-07-07T18:23:33+06:00 4 | description: "This is meta description" 5 | --- 6 | -------------------------------------------------------------------------------- /exampleSite/content/french/blog/are-you-doing-the-right-way.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Are You Doing the Right Way 3 | date: 2018-07-07T17:04:41+06:00 4 | image: images/blog/post-3.jpg 5 | author: Admin 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Introduction 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 12 | 13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 14 | 15 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 16 | -------------------------------------------------------------------------------- /exampleSite/content/french/blog/are-you-doing-the-right-way.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: FRANCAIS Are You Doing the Right Way 3 | date: 2018-07-07T17:04:41+06:00 4 | image: images/blog/post-3.jpg 5 | author: Admin 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Introduction 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 12 | 13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 14 | 15 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 16 | -------------------------------------------------------------------------------- /exampleSite/content/french/blog/blog-photos-on-phone.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Blog Photos on Phone" 3 | date: 2018-07-08T12:22:40+06:00 4 | image: images/blog/post-2.jpg 5 | author: Cersei Lannister 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Viral dreamcatcher keytar typewriter, aesthetic offal umami. 10 | 11 | Wellness spaces that reach neglected communities of color are essential, says spiritual advisor, mojo health advocate, and writer Anna Smith. As the 26-year-old Brooklyn native will tell you in her signature metaphysical-no-chaser way, when your mojo is in a bad place every aspect of your life is affected. She’s part of a growing effort to foster more inclusive healing spaces that take into account how racism, poverty, ableism, misogyny, and gender discrimination inform our self-care needs. Through harnessing the brujería that’s been passed down her Puerto Rican lineage over generations, offering private spiritual advisory sessions, and sharing 12 | -------------------------------------------------------------------------------- /exampleSite/content/french/blog/blog-photos-on-phone.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Blog Photos on Phone" 3 | date: 2018-07-08T12:22:40+06:00 4 | image: images/blog/post-2.jpg 5 | author: Cersei Lannister 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Viral dreamcatcher keytar typewriter, aesthetic offal umami. 10 | 11 | Wellness spaces that reach neglected communities of color are essential, says spiritual advisor, mojo health advocate, and writer Anna Smith. As the 26-year-old Brooklyn native will tell you in her signature metaphysical-no-chaser way, when your mojo is in a bad place every aspect of your life is affected. She’s part of a growing effort to foster more inclusive healing spaces that take into account how racism, poverty, ableism, misogyny, and gender discrimination inform our self-care needs. Through harnessing the brujería that’s been passed down her Puerto Rican lineage over generations, offering private spiritual advisory sessions, and sharing 12 | -------------------------------------------------------------------------------- /exampleSite/content/french/blog/installation.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "How To Setup Navigator Hugo" 3 | date: 2018-07-08T12:22:40+06:00 4 | image: images/blog/post-2.jpg 5 | author: Cersei Lannister 6 | description: "This is meta description" 7 | --- 8 | 9 | ## Install this template by following those simple steps: 10 | 11 | ### STEP-1 : Hugo installation 12 | 13 | Check this link below for install hugo on your computer. 14 | [hugo install documentation](https://gohugo.io/getting-started/installing/) 15 | 16 | ### STEP-2 : Create your project 17 | 18 | Hugo provides a `new` command to create a new website. 19 | 20 | ``` 21 | hugo new site 22 | ``` 23 | 24 | ### STEP-3 : Install the theme 25 | Run this command 26 | ``` 27 | hugo new site navigator-hugo 28 | ``` 29 | and then go to the themes folder inside of navigator-hugo folder. You can also use this command ```cd navigator-hugo/themes``` for going to this folder. 30 | Then run the command 31 | ``` 32 | git clone git@github.com:themefisher/navigator-hugo.git 33 | ``` 34 | 35 | Alternatively, you can [download the theme as .zip](https://github.com/themefisher/navigator-hugo/archive/master.zip) file and extract it in the `themes` directory 36 | 37 | After that you need to go to the `navigator-hugo/exampleSite` folder and copy or cut all the elements, and now go back to the root folder and paste it here. 38 | 39 | open the command prompt again and run `cd ../` command for go back to the root folder. 40 | 41 | ### STEP-4 : Host locally 42 | 43 | Launching the website locally by using the following command: 44 | 45 | ``` 46 | hugo serve 47 | ``` 48 | 49 | Go to `http://localhost:1313` 50 | 51 | Or you can check this video documentation for installing this template: 52 | {{< youtube _atvEfndieg >}} 53 | 54 | ### STEP-5 : Basic configuration 55 | 56 | 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. 57 | 58 | ```toml 59 | # Change the default theme to be use when building the site with Hugo 60 | theme = "navigator-hugo" 61 | ``` 62 | 63 | ### STEP-6 : Create your first content pages 64 | 65 | ``` 66 | hugo new blog/post-name.md 67 | ``` 68 | 69 | ### STEP-7 : Build the website 70 | 71 | When your site is ready to deploy, run the following command: 72 | 73 | ``` 74 | hugo 75 | 76 | # You can also create a minified version by using this command: 77 | hugo--minify 78 | 79 | ``` 80 | 81 | A `public` folder will be generated, containing all static content and assets for your website. It can now be deployed on any web server. -------------------------------------------------------------------------------- /exampleSite/content/french/blog/something-i-need-to-tell-you.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Something I Need to Tell You 3 | date: 2018-07-07T17:04:02+06:00 4 | image: images/blog/post-2.jpg 5 | author: Jhonathan Ive 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Introduction 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 12 | 13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 14 | 15 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 16 | 17 | -------------------------------------------------------------------------------- /exampleSite/content/french/blog/ten-things-about-business.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ten Things About Business 3 | date: 2018-07-07T16:57:54+06:00 4 | image: images/blog/post-1.jpg 5 | author: John Snow 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Introduction 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 12 | 13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. 14 | 15 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed euismod nisi porta lorem mollis aliquam ut porttitor leo. Turpis massa tincidunt dui ut ornare lectus sit amet est. Nisl rhoncus mattis rhoncus urna neque viverra justo nec. At volutpat diam ut venenatis. Mi quis hendrerit dolor magna eget. Dui ut ornare lectus sit amet est placerat. Urna cursus eget nunc scelerisque viverra. Amet cursus sit amet dictum. Vel pretium lectus quam id leo in vitae turpis massa. -------------------------------------------------------------------------------- /exampleSite/content/french/blog/the-nourish-box-august.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "The Nourish Box August" 3 | date: 2018-07-08T12:20:58+06:00 4 | image: images/blog/post-1.jpg 5 | author: Sansa Stark 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Viral dreamcatcher keytar typewriter, aesthetic offal umami. 10 | 11 | Wellness spaces that reach neglected communities of color are essential, says spiritual advisor, mojo health advocate, and writer Anna Smith. As the 26-year-old Brooklyn native will tell you in her signature metaphysical-no-chaser way, when your mojo is in a bad place every aspect of your life is affected. She’s part of a growing effort to foster more inclusive healing spaces that take into account how racism, poverty, ableism, misogyny, and gender discrimination inform our self-care needs. Through harnessing the brujería that’s been passed down her Puerto Rican lineage over generations, offering private spiritual advisory sessions, and sharing 12 | -------------------------------------------------------------------------------- /exampleSite/content/french/blog/this-show-has-divided.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "This Show Has Divided" 3 | date: 2018-07-08T12:18:46+06:00 4 | image: images/blog/post-3.jpg 5 | author: Theon Greyjoy 6 | description: "This is meta description" 7 | --- 8 | 9 | ### Chatting with the ancestors 10 | 11 | I always say my thanks to my ancestors and talk with them, with my guides. I talk to them about my day, what I want, what they need of me. I give my thanks to them for the day, even if I had a bad day. I let them know, ‘Thank you for making sure I ain’t die today, I survived through the fuck shit.It’s a big comfort to me to have that open line of communication because so many of my spirit guides are people who I knew in this lifetime who passed on, one being my father, one being my abuelita. It’s comforting to know even though they’re not here physically to do that anymore, they do it from the other side, for the ones I knew in this lifetime and the ones I didn’t. I’m able to say to myself, “Yo, I feel fucked up right now, but y’all always got me.” I know I’m fortunate to have that. 12 | 13 | It’s a big comfort to me to have that open line of communication because so many of my spirit guides are people who I knew in this lifetime who passed on, one being my father, one being my abuelita. It’s comforting to know even though they’re not here physically to do that anymore, they do it from the other side, for the ones I knew in this lifetime and the ones I didn’t. I’m able to say to myself, “Yo, I feel fucked up right now, but y’all always got me.” I know I’m fortunate to have that. 14 | 15 | It’s comforting to know even though they’re not here physically to do that anymore, they do it from the other side, for the ones I knew in this lifetime and the ones I didn’t. I’m able to say to myself, “Yo, I feel fucked up right now, but y’all always got me.” I know I’m fortunate to have that. -------------------------------------------------------------------------------- /exampleSite/content/french/blog/why-you-need-a-statement-bag-this-season.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Why You Need a Statement Bag 3 | date: 2018-07-08T12:11:29+06:00 4 | image: images/blog/post-2.jpg 5 | author: Arya Stark 6 | description: "This is meta description" 7 | --- 8 | ### A cleansing hot shower or bath 9 | 10 | I like to start with taking a shower or a bath when getting ready for bed. I’ll always incorporate either Himalayan pink salt or Epsom salt into my routine. Then, I’ll do an in-shower meditation, just releasing my day and allowing it to wash down the drain. I like to start from the neck down to symbolize washing and removing anything, and then I go from the feet up after to symbolize recharging my energy. 11 | 12 | ### Setting the mood with incense 13 | 14 | A lot of the times before bed I’ll pick a lavender or moon scent. I really like the scents from the brand HEM. Other times, if I’m needing to cleanse my space before bed, I like to use Frankincense & Myrrh incense because it’s really good at helping you feel sleepy time vibes. I have horrible insomnia so I’m somebody who really has to set my mood before going to bed. 15 | 16 | -------------------------------------------------------------------------------- /exampleSite/content/french/contact/_index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "FRANCAIS Contactez Nous" 3 | date: 2018-07-07T15:53:27+06:00 4 | draft: false 5 | description: "This is meta description" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/french/portfolio/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Portfolio" 3 | date: 2018-07-07T15:45:06+06:00 4 | draft: false 5 | description: "This is meta description" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/french/service/_index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Our Services" 3 | date: 2018-07-07T14:53:13+06:00 4 | draft: false 5 | description: "This is meta description" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/data/en/about.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | item : 3 | - positionRight : false 4 | image : images/about/about-1.jpg 5 | title : Creativity is in our blood 6 | description : > 7 | Curabitur felis nibh, imperdiet eu erat non, luctus cursus lectus. Donec maximus diam leo, sed fringilla nisl auctor eget. Donec dictum neque est, ac faucibus ex blandit a Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae quo minima ab aperiam molestiae natus repellendus neque culpa iure, nemo veritatis explicabo facilis, officia, saepe! Et corrupti odit, non deserunt. 8 | 9 | - positionRight : true 10 | image : images/about/about-2.jpg 11 | title : We think out of the Box 12 | description : > 13 | Curabitur felis nibh, imperdiet eu erat non, luctus cursus lectus. Donec maximus diam leo, sed fringilla nisl auctor eget. Donec dictum neque est, ac faucibus ex blandit a Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae quo minima ab aperiam molestiae natus repellendus neque culpa iure, nemo veritatis explicabo facilis, officia, saepe! Et corrupti odit, non deserunt. 14 | -------------------------------------------------------------------------------- /exampleSite/data/en/clients.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | title : We care about our work 3 | description: > 4 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae dolorem, saepe ab, optio obcaecati id asperiores. Ab ullam qui architecto at eos distinctio debitis, libero reprehenderit excepturi rem ut odit est nam magni ratione necessitatibus, quod eaque, eius minima tempora deleniti illum aliquam! Perferendis optio dolorum blanditiis sapiente aperiam quaerat. 5 | image : images/about/about-1.jpg 6 | servicelist: 7 | - name : Creative Designers 8 | - name : Genius Developers 9 | - name : Growth Hackers 10 | - name : Marketing Masterminds 11 | clientLogo: 12 | - image : images/client-logo/logo1.png 13 | - image : images/client-logo/logo-2.png 14 | - image : images/client-logo/logo-3.png 15 | - image : images/client-logo/logo-4.png 16 | - image : images/client-logo/logo-5.png 17 | - image : images/client-logo/logo1.png 18 | - image : images/client-logo/logo-2.png 19 | - image : images/client-logo/logo-3.png 20 | - image : images/client-logo/logo-4.png 21 | - image : images/client-logo/logo-5.png 22 | -------------------------------------------------------------------------------- /exampleSite/data/en/feature.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | item : 3 | - icon : tf-ion-ios-copy-outline 4 | title : WordPress Theme 5 | description : > 6 | Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus. Nullam iaculis arcu at mauris dapibus consectetur. 7 | 8 | - icon : tf-ion-ios-alarm-outline 9 | title : Responsive Design 10 | description : > 11 | Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus. Nullam iaculis arcu at mauris dapibus consectetur. 12 | 13 | - icon : tf-ion-ios-book-outline 14 | title : Media & Advertisement 15 | description : > 16 | Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus. Nullam iaculis arcu at mauris dapibus consectetur. 17 | -------------------------------------------------------------------------------- /exampleSite/data/en/philosophy.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle : LITTLE MORE BRIEF 3 | title : About Us. 4 | subtitle : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | tabItem : 6 | - id : philosophy 7 | title : Our Philosophy 8 | heading : We Create Designs and technology 9 | content : > 10 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat voluptate molestias, quaerat quo natus dolor harum voluptatibus modi dicta ducimus.

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Harum quae officia earum dolore est quaerat cupiditate voluptatibus id, magni alias veniam voluptate, libero explicabo, distinctio atque! 11 | image : images/company/company-image.jpg 12 | 13 | - id : mission 14 | title : Mission 15 | heading : Our Mission 16 | content : > 17 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat voluptate molestias, quaerat quo natus dolor harum voluptatibus modi dicta ducimus.

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Harum quae officia earum dolore est quaerat cupiditate voluptatibus id, magni alias veniam voluptate, libero explicabo, distinctio atque! 18 | image : images/company/company-image-2.jpg 19 | 20 | - id : vision 21 | title : Vision 22 | heading : Our Vision 23 | content : > 24 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat voluptate molestias, quaerat quo natus dolor harum voluptatibus modi dicta ducimus.

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Harum quae officia earum dolore est quaerat cupiditate voluptatibus id, magni alias veniam voluptate, libero explicabo, distinctio atque! 25 | image : images/company/company-image-3.jpg 26 | -------------------------------------------------------------------------------- /exampleSite/data/en/portfolio.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle: RECENT WORK 3 | title : WORK SHOWCASE. 4 | subtitle: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | 6 | filtermenu : 7 | - name : Photography 8 | category : photography 9 | 10 | - name : Ios App 11 | category : ios 12 | 13 | - name : Development 14 | category : development 15 | 16 | - name : Design 17 | category : design 18 | 19 | item : 20 | - title : AirBnB Postcard 21 | image : images/portfolio/portfolio-1.jpg 22 | category : photography 23 | 24 | - title : D Design 25 | image : images/portfolio/portfolio-2.jpg 26 | category : ios, design 27 | 28 | - title : Xbox 360 29 | image : images/portfolio/portfolio-3.jpg 30 | category : photography, development 31 | 32 | - title : Ballon Card 33 | image : images/portfolio/portfolio-4.jpg 34 | category : ios 35 | 36 | - title : Ready Toons 37 | image : images/portfolio/portfolio-5.jpg 38 | category : design 39 | 40 | - title : Illustration 41 | image : images/portfolio/portfolio-6.jpg 42 | category : development 43 | -------------------------------------------------------------------------------- /exampleSite/data/en/pricing.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle: EASY PRICING 3 | title : Pricing. 4 | subtitle : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | 6 | item : 7 | - name : BASIC 8 | price : $99 9 | description : Perfect for single freelancers who work by themselves 10 | featurelist : 11 | - item: 1GB Disk Space 12 | - item: 10 Email Account 13 | - item: Script Installer 14 | - item: 1 GB Storage 15 | - item: 10 GB Bandwidth 16 | - item: 24/7 Tech Support 17 | btnText : Sign Up 18 | btnURL : https://themefisher.com/ 19 | 20 | - name : ADVANCE 21 | price : $199 22 | description : Suitable for small businesses with up to 5 employees 23 | featurelist : 24 | - item: 1GB Disk Space 25 | - item: 10 Email Account 26 | - item: Script Installer 27 | - item: 1 GB Storage 28 | - item: 10 GB Bandwidth 29 | - item: 24/7 Tech Support 30 | btnText : Sign Up 31 | btnURL : https://themefisher.com/ 32 | 33 | - name : PROFESSIONAL 34 | price : $299 35 | description : Great for large businesses with more than 5 employees 36 | featurelist : 37 | - item: 1GB Disk Space 38 | - item: 10 Email Account 39 | - item: Script Installer 40 | - item: 1 GB Storage 41 | - item: 10 GB Bandwidth 42 | - item: 24/7 Tech Support 43 | btnText : Sign Up 44 | btnURL : https://themefisher.com/ 45 | -------------------------------------------------------------------------------- /exampleSite/data/en/service.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle : A LIST OF SERVICES 3 | title : Our Service. 4 | subtitle : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | item : 6 | - icon : tf-ion-ios-copy-outline 7 | title : Branding 8 | list : 9 | - name : Brand Strategy 10 | - name : Advertising / Campaigns 11 | - name : Product Design 12 | - name : Video / Photography 13 | 14 | - icon : tf-ion-ios-alarm-outline 15 | title : Branding 16 | list : 17 | - name : Web Design 18 | - name : E- Commerce Site Design 19 | - name : App Development 20 | - name : Mobile UI Design 21 | 22 | - icon : tf-ion-ios-book-outline 23 | title : IOS App Development 24 | list : 25 | - name : Game Development 26 | - name : Game Design 27 | - name : Social Media Marketing 28 | - name : Mobile UI Design 29 | -------------------------------------------------------------------------------- /exampleSite/data/en/team.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle: TEAM MEMBER 3 | title : Our Team. 4 | subtitle: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | 6 | member : 7 | - image : images/team/member-1.jpg 8 | name : Shawshank Redemption 9 | designation : Head Of Marketing 10 | description : > 11 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. 12 | facebookURL : https://www.facebook.com/ 13 | twitterURL : https://twitter.com/ 14 | gplusURL : https://plus.google.com/ 15 | dribbbleURL : https://dribbble.com/ 16 | 17 | - image : images/team/member-2.jpg 18 | name : Leo Departure 19 | designation : Web Developer 20 | description : > 21 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. 22 | facebookURL : https://www.facebook.com/ 23 | twitterURL : https://twitter.com/ 24 | gplusURL : https://plus.google.com/ 25 | dribbbleURL : https://dribbble.com/ 26 | 27 | - image : images/team/member-3.jpg 28 | name : Remoni Rio 29 | designation : Senior Developer 30 | description : > 31 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. 32 | facebookURL : https://www.facebook.com/ 33 | twitterURL : https://twitter.com/ 34 | gplusURL : https://plus.google.com/ 35 | dribbbleURL : https://dribbble.com/ 36 | 37 | - image : images/team/member-4.jpg 38 | name : Lawandeski Roma 39 | designation : Designer 40 | description : > 41 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. 42 | facebookURL : https://www.facebook.com/ 43 | twitterURL : https://twitter.com/ 44 | gplusURL : https://plus.google.com/ 45 | dribbbleURL : https://dribbble.com/ 46 | -------------------------------------------------------------------------------- /exampleSite/data/en/testimonial.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | item : 3 | - quote : > 4 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eum nulla, soluta dolorum. Eos earum, magni asperiores, unde corpori labore, enim, voluptatum officiis voluptates alias natus. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quia officia. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod, quia? 5 | clientThumb : images/client-logo/clients-1.jpg 6 | clientName : Matt Cutts 7 | clientDesignation: CEO , Company Name 8 | 9 | - quote : > 10 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eum nulla, soluta dolorum. Eos earum, magni asperiores, unde corpori labore, enim, voluptatum officiis voluptates alias natus. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quia officia. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod, quia? 11 | clientThumb : images/client-logo/clients-2.jpg 12 | clientName : Elon Mask 13 | clientDesignation: CEO , Company Name 14 | 15 | - quote : > 16 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eum nulla, soluta dolorum. Eos earum, magni asperiores, unde corpori labore, enim, voluptatum officiis voluptates alias natus. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quia officia. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod, quia? 17 | clientThumb : images/client-logo/clients-1.jpg 18 | clientName : Matt Cutts 19 | clientDesignation: CEO , Company Name 20 | 21 | - quote : > 22 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eum nulla, soluta dolorum. Eos earum, magni asperiores, unde corpori labore, enim, voluptatum officiis voluptates alias natus. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quia officia. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod, quia? 23 | clientThumb : images/client-logo/clients-2.jpg 24 | clientName : Elon Mask 25 | clientDesignation: CEO , Company Name 26 | -------------------------------------------------------------------------------- /exampleSite/data/en/workingprocess.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle: HOW WE WORKS 3 | title : Our Work Process 4 | subtitle: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | item : 6 | - number : 1 7 | icon : tf-ion-ios-briefcase-outline 8 | title : Project Analysis 9 | description : > 10 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis. 11 | 12 | - number : 2 13 | icon : tf-ion-ios-alarm-outline 14 | title : Time Management 15 | description : > 16 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis. 17 | 18 | - number : 3 19 | icon : tf-ion-ios-email-outline 20 | title : Mail Support 21 | description : > 22 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis. 23 | 24 | - number : 4 25 | icon : tf-ion-ios-locked-outline 26 | title : Secure System 27 | description : > 28 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis. 29 | -------------------------------------------------------------------------------- /exampleSite/data/fr/about.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | item : 3 | - positionRight : false 4 | image : images/about/about-1.jpg 5 | title : FRANCAIS Creativity is in our blood 6 | description : > 7 | FRANCAIS Curabitur felis nibh, imperdiet eu erat non, luctus cursus lectus. Donec maximus diam leo, sed fringilla nisl auctor eget. Donec dictum neque est, ac faucibus ex blandit a Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae quo minima ab aperiam molestiae natus repellendus neque culpa iure, nemo veritatis explicabo facilis, officia, saepe! Et corrupti odit, non deserunt. 8 | 9 | - positionRight : true 10 | image : images/about/about-2.jpg 11 | title : FRANCAIS We think out of the Box 12 | description : > 13 | FRANCAIS Curabitur felis nibh, imperdiet eu erat non, luctus cursus lectus. Donec maximus diam leo, sed fringilla nisl auctor eget. Donec dictum neque est, ac faucibus ex blandit a Lorem ipsum dolor sit amet, consectetur adipisicing elit. Recusandae quo minima ab aperiam molestiae natus repellendus neque culpa iure, nemo veritatis explicabo facilis, officia, saepe! Et corrupti odit, non deserunt. 14 | -------------------------------------------------------------------------------- /exampleSite/data/fr/clients.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | title : FRANCAIS We care about our work 3 | description: > 4 | FRANCAIS Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae dolorem, saepe ab, optio obcaecati id asperiores. Ab ullam qui architecto at eos distinctio debitis, libero reprehenderit excepturi rem ut odit est nam magni ratione necessitatibus, quod eaque, eius minima tempora deleniti illum aliquam! Perferendis optio dolorum blanditiis sapiente aperiam quaerat. 5 | image : images/about/about-1.jpg 6 | servicelist: 7 | - name : Creative Designers 8 | - name : Genius Developers 9 | - name : Growth Hackers 10 | - name : Marketing Masterminds 11 | clientLogo: 12 | - image : images/client-logo/logo1.png 13 | - image : images/client-logo/logo-2.png 14 | - image : images/client-logo/logo-3.png 15 | - image : images/client-logo/logo-4.png 16 | - image : images/client-logo/logo-5.png 17 | - image : images/client-logo/logo1.png 18 | - image : images/client-logo/logo-2.png 19 | - image : images/client-logo/logo-3.png 20 | - image : images/client-logo/logo-4.png 21 | - image : images/client-logo/logo-5.png 22 | -------------------------------------------------------------------------------- /exampleSite/data/fr/feature.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | item : 3 | - icon : tf-ion-ios-copy-outline 4 | title : FRANCAIS WordPress Theme 5 | description : > 6 | Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus. Nullam iaculis arcu at mauris dapibus consectetur. 7 | 8 | - icon : tf-ion-ios-alarm-outline 9 | title : FRANCAIS Responsive Design 10 | description : > 11 | Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus. Nullam iaculis arcu at mauris dapibus consectetur. 12 | 13 | - icon : tf-ion-ios-book-outline 14 | title : Media & Advertisement 15 | description : > 16 | Lorem ipsum dolor sit amet, consectetur.. Sed id lorem eget orci dictum facilisis vel id tellus. Nullam iaculis arcu at mauris dapibus consectetur. 17 | -------------------------------------------------------------------------------- /exampleSite/data/fr/philosophy.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle : FRANCAIS LITTLE MORE BRIEF 3 | title : FRANCAIS About Us. 4 | subtitle : FRANCAIS Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | tabItem : 6 | - id : philosophy 7 | title : FRANCAIS Our Philosophy 8 | heading : FRANCAIS We Create Designs and technology 9 | content : > 10 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat voluptate molestias, quaerat quo natus dolor harum voluptatibus modi dicta ducimus.

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Harum quae officia earum dolore est quaerat cupiditate voluptatibus id, magni alias veniam voluptate, libero explicabo, distinctio atque! 11 | image : images/company/company-image.jpg 12 | 13 | - id : mission 14 | title : FRANCAIS Mission 15 | heading : FRANCAIS Our Mission 16 | content : > 17 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat voluptate molestias, quaerat quo natus dolor harum voluptatibus modi dicta ducimus.

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Harum quae officia earum dolore est quaerat cupiditate voluptatibus id, magni alias veniam voluptate, libero explicabo, distinctio atque! 18 | image : images/company/company-image-2.jpg 19 | 20 | - id : vision 21 | title : FRANCAIS Vision 22 | heading : FRANCAIS Our Vision 23 | content : > 24 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellat voluptate molestias, quaerat quo natus dolor harum voluptatibus modi dicta ducimus.

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Harum quae officia earum dolore est quaerat cupiditate voluptatibus id, magni alias veniam voluptate, libero explicabo, distinctio atque! 25 | image : images/company/company-image-3.jpg 26 | -------------------------------------------------------------------------------- /exampleSite/data/fr/portfolio.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle: FRANCAIS RECENT WORK 3 | title : FRANCAIS WORK SHOWCASE. 4 | subtitle: FRANCAIS Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | 6 | filtermenu : 7 | - name : Photography 8 | category : photography 9 | 10 | - name : Ios App 11 | category : ios 12 | 13 | - name : Development 14 | category : development 15 | 16 | - name : Design 17 | category : design 18 | 19 | item : 20 | - title : AirBnB Postcard 21 | image : images/portfolio/portfolio-1.jpg 22 | category : photography 23 | 24 | - title : D Design 25 | image : images/portfolio/portfolio-2.jpg 26 | category : ios, design 27 | 28 | - title : Xbox 360 29 | image : images/portfolio/portfolio-3.jpg 30 | category : photography, development 31 | 32 | - title : Ballon Card 33 | image : images/portfolio/portfolio-4.jpg 34 | category : ios 35 | 36 | - title : Ready Toons 37 | image : images/portfolio/portfolio-5.jpg 38 | category : design 39 | 40 | - title : Illustration 41 | image : images/portfolio/portfolio-6.jpg 42 | category : development 43 | -------------------------------------------------------------------------------- /exampleSite/data/fr/pricing.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle: EASY PRICING 3 | title : FRANCAIS Pricing. 4 | subtitle : Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | 6 | item : 7 | - name : FRANCAIS BASIC 8 | price : $99 9 | description : Perfect for single freelancers who work by themselves 10 | featurelist : 11 | - item: 1GB Disk Space 12 | - item: 10 Email Account 13 | - item: Script Installer 14 | - item: 1 GB Storage 15 | - item: 10 GB Bandwidth 16 | - item: 24/7 Tech Support 17 | btnText : Sign Up 18 | btnURL : https://themefisher.com/ 19 | 20 | - name : ADVANCE 21 | price : $199 22 | description : Suitable for small businesses with up to 5 employees 23 | featurelist : 24 | - item: 1GB Disk Space 25 | - item: 10 Email Account 26 | - item: Script Installer 27 | - item: 1 GB Storage 28 | - item: 10 GB Bandwidth 29 | - item: 24/7 Tech Support 30 | btnText : Sign Up 31 | btnURL : https://themefisher.com/ 32 | 33 | - name : PROFESSIONAL 34 | price : $299 35 | description : Great for large businesses with more than 5 employees 36 | featurelist : 37 | - item: 1GB Disk Space 38 | - item: 10 Email Account 39 | - item: Script Installer 40 | - item: 1 GB Storage 41 | - item: 10 GB Bandwidth 42 | - item: 24/7 Tech Support 43 | btnText : Sign Up 44 | btnURL : https://themefisher.com/ 45 | -------------------------------------------------------------------------------- /exampleSite/data/fr/service.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle : FRANCAIS A LIST OF SERVICES 3 | title : FRANCAIS Our Service. 4 | subtitle : FRANCAIS Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | item : 6 | - icon : tf-ion-ios-copy-outline 7 | title : FRANCAIS Branding 8 | list : 9 | - name : Brand Strategy 10 | - name : Advertising / Campaigns 11 | - name : Product Design 12 | - name : Video / Photography 13 | 14 | - icon : tf-ion-ios-alarm-outline 15 | title : FRANCAIS Branding 16 | list : 17 | - name : Web Design 18 | - name : E- Commerce Site Design 19 | - name : App Development 20 | - name : Mobile UI Design 21 | 22 | - icon : tf-ion-ios-book-outline 23 | title : FRANCAIS IOS App Development 24 | list : 25 | - name : Game Development 26 | - name : Game Design 27 | - name : Social Media Marketing 28 | - name : Mobile UI Design 29 | -------------------------------------------------------------------------------- /exampleSite/data/fr/team.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle: FRANCAIS TEAM MEMBER 3 | title : FRANCAIS Our Team. 4 | subtitle: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | 6 | member : 7 | - image : images/team/member-1.jpg 8 | name : FRANCAIS Shawshank Redemption 9 | designation : Head Of Marketing 10 | description : > 11 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. 12 | facebookURL : https://www.facebook.com/ 13 | twitterURL : https://twitter.com/ 14 | gplusURL : https://plus.google.com/ 15 | dribbbleURL : https://dribbble.com/ 16 | 17 | - image : images/team/member-2.jpg 18 | name : Leo Departure 19 | designation : Web Developer 20 | description : > 21 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. 22 | facebookURL : https://www.facebook.com/ 23 | twitterURL : https://twitter.com/ 24 | gplusURL : https://plus.google.com/ 25 | dribbbleURL : https://dribbble.com/ 26 | 27 | - image : images/team/member-3.jpg 28 | name : Remoni Rio 29 | designation : Senior Developer 30 | description : > 31 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. 32 | facebookURL : https://www.facebook.com/ 33 | twitterURL : https://twitter.com/ 34 | gplusURL : https://plus.google.com/ 35 | dribbbleURL : https://dribbble.com/ 36 | 37 | - image : images/team/member-4.jpg 38 | name : Lawandeski Roma 39 | designation : Designer 40 | description : > 41 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Aspernatur necessitatibus ullam, culpa odio. 42 | facebookURL : https://www.facebook.com/ 43 | twitterURL : https://twitter.com/ 44 | gplusURL : https://plus.google.com/ 45 | dribbbleURL : https://dribbble.com/ 46 | -------------------------------------------------------------------------------- /exampleSite/data/fr/testimonial.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | item : 3 | - quote : > 4 | FRANCAIS Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eum nulla, soluta dolorum. Eos earum, magni asperiores, unde corpori labore, enim, voluptatum officiis voluptates alias natus. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quia officia. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod, quia? 5 | clientThumb : images/client-logo/clients-1.jpg 6 | clientName : FRANCAIS Matt Cutts 7 | clientDesignation: CEO , Company Name 8 | 9 | - quote : > 10 | FRANCAIS Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eum nulla, soluta dolorum. Eos earum, magni asperiores, unde corpori labore, enim, voluptatum officiis voluptates alias natus. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quia officia. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod, quia? 11 | clientThumb : images/client-logo/clients-2.jpg 12 | clientName : FRANCAIS Elon Mask 13 | clientDesignation: CEO , Company Name 14 | 15 | - quote : > 16 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eum nulla, soluta dolorum. Eos earum, magni asperiores, unde corpori labore, enim, voluptatum officiis voluptates alias natus. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quia officia. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod, quia? 17 | clientThumb : images/client-logo/clients-1.jpg 18 | clientName : FRANCAIS Matt Cutts 19 | clientDesignation: CEO , Company Name 20 | 21 | - quote : > 22 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eum nulla, soluta dolorum. Eos earum, magni asperiores, unde corpori labore, enim, voluptatum officiis voluptates alias natus. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quia officia. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod, quia? 23 | clientThumb : images/client-logo/clients-2.jpg 24 | clientName : FRANCAIS Elon Mask 25 | clientDesignation: CEO , Company Name 26 | -------------------------------------------------------------------------------- /exampleSite/data/fr/workingprocess.yml: -------------------------------------------------------------------------------- 1 | enable : true 2 | topTitle: FRANCAIS HOW WE WORKS 3 | title : FRANCAIS Our Work Process 4 | subtitle: FRANCAIS Lorem ipsum dolor sit amet, consectetur adipisicing elit. Illum reiciendis quasi itaque, obcaecati atque sit! 5 | item : 6 | - number : 1 7 | icon : tf-ion-ios-briefcase-outline 8 | title : Project Analysis 9 | description : > 10 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis. 11 | 12 | - number : 2 13 | icon : tf-ion-ios-alarm-outline 14 | title : Time Management 15 | description : > 16 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis. 17 | 18 | - number : 3 19 | icon : tf-ion-ios-email-outline 20 | title : Mail Support 21 | description : > 22 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis. 23 | 24 | - number : 4 25 | icon : tf-ion-ios-locked-outline 26 | title : Secure System 27 | description : > 28 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce vitae risus nec dui venenatis. 29 | -------------------------------------------------------------------------------- /exampleSite/i18n/en.toml: -------------------------------------------------------------------------------- 1 | [about] 2 | other = "About" 3 | [service] 4 | other = "Service" 5 | [portfolio] 6 | other = "Portfolio" 7 | [blog] 8 | other = "Blog" 9 | [contact] 10 | other = "Contact" 11 | 12 | [graphicdesign] 13 | other = "Graphic Design" 14 | [webdesign] 15 | other = "Web Design" 16 | [webdevelopment] 17 | other = "Web Development" 18 | 19 | [partners] 20 | other = "Partners" 21 | [faqs] 22 | other = "FAQ's" 23 | [badges] 24 | other = "Badges" 25 | -------------------------------------------------------------------------------- /exampleSite/i18n/fr.toml: -------------------------------------------------------------------------------- 1 | [about] 2 | other = "À Propos" 3 | [service] 4 | other = "Un Service" 5 | [portfolio] 6 | other = "Portefeuille" 7 | [blog] 8 | other = "Blog" 9 | [contact] 10 | other = "Contacter" 11 | 12 | [graphicdesign] 13 | other = "Graphic Design" 14 | [webdesign] 15 | other = "Web Design" 16 | [webdevelopment] 17 | other = "Web Development" 18 | 19 | [partners] 20 | other = "Les Partenaires" 21 | [faqs] 22 | other = "FAQ's" 23 | [badges] 24 | other = "Insignes" 25 | -------------------------------------------------------------------------------- /exampleSite/public/en/about/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | About Us ... on Example site multi-language 5 | http://localhost:1313/navigator/examplesite/en/about/ 6 | Recent content in About Us ... on Example site multi-language 7 | Hugo 8 | en-us 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /exampleSite/public/en/blog/page/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://localhost:1313/navigator/examplesite/en/blog/ 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exampleSite/public/en/categories/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Categories on Example site multi-language 5 | http://localhost:1313/navigator/examplesite/en/categories/ 6 | Recent content in Categories on Example site multi-language 7 | Hugo 8 | en-us 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /exampleSite/public/en/categories/page/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://localhost:1313/navigator/examplesite/en/categories/ 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exampleSite/public/en/contact/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contact Us on Example site multi-language 5 | http://localhost:1313/navigator/examplesite/en/contact/ 6 | Recent content in Contact Us on Example site multi-language 7 | Hugo 8 | en-us 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /exampleSite/public/en/portfolio/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Portfolio on Example site multi-language 5 | http://localhost:1313/navigator/examplesite/en/portfolio/ 6 | Recent content in Portfolio on Example site multi-language 7 | Hugo 8 | en-us 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /exampleSite/public/en/service/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Our Services on Example site multi-language 5 | http://localhost:1313/navigator/examplesite/en/service/ 6 | Recent content in Our Services on Example site multi-language 7 | Hugo 8 | en-us 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /exampleSite/public/en/tags/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags on Example site multi-language 5 | http://localhost:1313/navigator/examplesite/en/tags/ 6 | Recent content in Tags on Example site multi-language 7 | Hugo 8 | en-us 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /exampleSite/public/en/tags/page/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://localhost:1313/navigator/examplesite/en/tags/ 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exampleSite/public/fr/about/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | A propos de nous ... on FRANCAIS Example site multi-language 5 | http://localhost:1313/navigator/examplesite/fr/about/ 6 | Recent content in A propos de nous ... on FRANCAIS Example site multi-language 7 | Hugo 8 | fr-fr 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /exampleSite/public/fr/blog/page/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://localhost:1313/navigator/examplesite/fr/blog/ 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exampleSite/public/fr/categories/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Categories on FRANCAIS Example site multi-language 5 | http://localhost:1313/navigator/examplesite/fr/categories/ 6 | Recent content in Categories on FRANCAIS Example site multi-language 7 | Hugo 8 | fr-fr 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /exampleSite/public/fr/categories/page/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://localhost:1313/navigator/examplesite/fr/categories/ 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exampleSite/public/fr/contact/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FRANCAIS Contactez Nous on FRANCAIS Example site multi-language 5 | http://localhost:1313/navigator/examplesite/fr/contact/ 6 | Recent content in FRANCAIS Contactez Nous on FRANCAIS Example site multi-language 7 | Hugo 8 | fr-fr 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /exampleSite/public/fr/tags/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tags on FRANCAIS Example site multi-language 5 | http://localhost:1313/navigator/examplesite/fr/tags/ 6 | Recent content in Tags on FRANCAIS Example site multi-language 7 | Hugo 8 | fr-fr 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /exampleSite/public/fr/tags/page/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://localhost:1313/navigator/examplesite/fr/tags/ 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exampleSite/public/images/about/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/about/about-1.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/about/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/about/about-2.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/about/about-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/about/about-2.png -------------------------------------------------------------------------------- /exampleSite/public/images/about/about-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/about/about-header.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/about/member.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/about/member.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/blog/post-1.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/blog/post-2.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/blog/post-3.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/call-to-action/call-to-action-bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/call-to-action/call-to-action-bg-2.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/call-to-action/call-to-action-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/call-to-action/call-to-action-bg.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/client-logo/clients-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/client-logo/clients-1.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/client-logo/clients-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/client-logo/clients-2.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/client-logo/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/client-logo/logo-2.png -------------------------------------------------------------------------------- /exampleSite/public/images/client-logo/logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/client-logo/logo-3.png -------------------------------------------------------------------------------- /exampleSite/public/images/client-logo/logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/client-logo/logo-4.png -------------------------------------------------------------------------------- /exampleSite/public/images/client-logo/logo-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/client-logo/logo-5.png -------------------------------------------------------------------------------- /exampleSite/public/images/client-logo/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/client-logo/logo1.png -------------------------------------------------------------------------------- /exampleSite/public/images/company/company-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/company/company-image-2.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/company/company-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/company/company-image-3.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/company/company-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/company/company-image.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/favicon.ico -------------------------------------------------------------------------------- /exampleSite/public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/favicon.png -------------------------------------------------------------------------------- /exampleSite/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/logo.png -------------------------------------------------------------------------------- /exampleSite/public/images/logos/lang-de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/logos/lang-de.gif -------------------------------------------------------------------------------- /exampleSite/public/images/logos/lang-en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/logos/lang-en.gif -------------------------------------------------------------------------------- /exampleSite/public/images/logos/lang-fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/logos/lang-fr.gif -------------------------------------------------------------------------------- /exampleSite/public/images/logos/lang-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/logos/lang-nl.gif -------------------------------------------------------------------------------- /exampleSite/public/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/marker.png -------------------------------------------------------------------------------- /exampleSite/public/images/portfolio/portfolio-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/portfolio/portfolio-1.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/portfolio/portfolio-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/portfolio/portfolio-2.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/portfolio/portfolio-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/portfolio/portfolio-3.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/portfolio/portfolio-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/portfolio/portfolio-4.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/portfolio/portfolio-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/portfolio/portfolio-5.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/portfolio/portfolio-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/portfolio/portfolio-6.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/portfolio/portfolio-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/portfolio/portfolio-7.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/portfolio/portfolio-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/portfolio/portfolio-8.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/pricing-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/pricing-bg.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/slider/video-player-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/slider/video-player-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/team/member-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/team/member-1.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/team/member-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/team/member-2.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/team/member-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/team/member-3.jpg -------------------------------------------------------------------------------- /exampleSite/public/images/team/member-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/images/team/member-4.jpg -------------------------------------------------------------------------------- /exampleSite/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | http://localhost:1313/navigator/examplesite/en/ 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exampleSite/public/js/script.min.js: -------------------------------------------------------------------------------- 1 | $(window).on("load",function(){$("#preloader").fadeOut("slow",function(){$(this).remove()})}),function(e){"use strict";e(".play-icon i").click(function(){var t='';e(this).replaceWith(t)}),setTimeout(function(){var t=e(".filtr-container").filterizr({});e(".filtr-control").on("click",function(){e(".filtr-control").removeClass("active"),e(this).addClass("active")})},500),e(".testimonial-slider").slick({slidesToShow:2,slidesToScroll:1,infinite:!0,arrows:!1,autoplay:!0,autoplaySpeed:2e3,responsive:[{breakpoint:600,settings:{slidesToShow:1,slidesToScroll:2}},{breakpoint:480,settings:{slidesToShow:1,slidesToScroll:1}}]}),e(".clients-logo-slider").slick({infinite:!0,arrows:!1,autoplay:!0,autoplaySpeed:2e3,slidesToShow:5,slidesToScroll:1}),e(".company-gallery").slick({infinite:!0,arrows:!1,autoplay:!0,autoplaySpeed:2e3,slidesToShow:5,slidesToScroll:1}),e(".counter").each(function(){var t=e(this),n=t.attr("data-count");e({countNum:t.text()}).animate({countNum:n},{duration:1500,easing:"linear",step:function(){t.text(Math.floor(this.countNum))},complete:function(){t.text(this.countNum)}})}),e("#contact-submit").click(function(t){t.preventDefault();var n=!1,o=e("#name").val(),s=e("#email").val(),i=e("#subject").val(),a=e("#message").val();o.length==0?(n=!0,e("#name").css("border-color","#D8000C")):e("#name").css("border-color","#666"),s.length==0||s.indexOf("@")=="-1"?(n=!0,e("#email").css("border-color","#D8000C")):e("#email").css("border-color","#666"),i.length==0?(n=!0,e("#subject").css("border-color","#D8000C")):e("#subject").css("border-color","#666"),a.length==0?(n=!0,e("#message").css("border-color","#D8000C")):e("#message").css("border-color","#666"),n==!1&&(e("#contact-submit").attr({disabled:"false",value:"Sending..."}),e.post("sendmail.php",e("#contact-form").serialize(),function(t){t=="sent"?(e("#cf-submit").remove(),e("#mail-success").fadeIn(500)):(e("#mail-fail").fadeIn(500),e("#contact-submit").removeAttr("disabled").attr("value","Send The Message"))}))})}(jQuery),window.marker=null;function initialize(){var n,s,o=$("#map").data("lat"),i=$("#map").data("long"),t=new google.maps.LatLng(o,i),a=[{stylers:[{hue:"#ff61a6"},{visibility:"on"},{invert_lightness:!0},{saturation:40},{lightness:10}]}],r={center:t,mapTypeId:google.maps.MapTypeId.ROADMAP,zoom:9,backgroundColor:"#000",zoom:17,panControl:!1,zoomControl:!0,mapTypeControl:!1,scaleControl:!1,streetViewControl:!1,overviewMapControl:!1,zoomControlOptions:{style:google.maps.ZoomControlStyle.LARGE}},e=new google.maps.Map(document.getElementById("map"),r),c=new google.maps.StyledMapType(a,{name:"Grayscale"});e.mapTypes.set("grey",c),e.setMapTypeId("grey"),n=$("#map").data("marker"),s=new google.maps.MarkerImage(n,null,null,null,new google.maps.Size(25,33)),marker=new google.maps.Marker({position:t,map:e,icon:s,title:"navigator"})}var map=$("#map");map.length!=0&&google.maps.event.addDomListener(window,"load",initialize) -------------------------------------------------------------------------------- /exampleSite/public/plugins/lightbox2/dist/css/lightbox.min.css: -------------------------------------------------------------------------------- 1 | .lb-loader,.lightbox{text-align:center;line-height:0}body:after{content:url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);display:none}.lb-dataContainer:after,.lb-outerContainer:after{content:"";clear:both}body.lb-disable-scrolling{overflow:hidden}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:#000;filter:alpha(Opacity=80);opacity:.8;display:none}.lightbox{position:absolute;left:0;width:100%;z-index:10000;font-weight:400}.lightbox .lb-image{display:block;height:auto;max-width:inherit;max-height:none;border-radius:3px;border:4px solid #fff}.lightbox a img{border:none}.lb-outerContainer{position:relative;width:250px;height:250px;margin:0 auto;border-radius:4px;background-color:#fff}.lb-loader,.lb-nav{position:absolute;left:0}.lb-outerContainer:after{display:table}.lb-loader{top:43%;height:25%;width:100%}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;background:url(../images/loading.gif) no-repeat}.lb-nav{top:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:0;background-image:url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)}.lb-next,.lb-prev{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;background:url(../images/prev.png) left 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-prev:hover{filter:alpha(Opacity=100);opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;background:url(../images/next.png) right 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-next:hover{filter:alpha(Opacity=100);opacity:1}.lb-dataContainer{margin:0 auto;padding-top:5px;width:100%;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.lb-dataContainer:after{display:table}.lb-data{padding:0 4px;color:#ccc}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:700;line-height:1em}.lb-data .lb-caption a{color:#4ae}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#999}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;background:url(../images/close.png) top right no-repeat;text-align:right;outline:0;filter:alpha(Opacity=70);opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.lb-data .lb-close:hover{cursor:pointer;filter:alpha(Opacity=100);opacity:1} -------------------------------------------------------------------------------- /exampleSite/public/plugins/lightbox2/dist/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/plugins/lightbox2/dist/images/close.png -------------------------------------------------------------------------------- /exampleSite/public/plugins/lightbox2/dist/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/plugins/lightbox2/dist/images/loading.gif -------------------------------------------------------------------------------- /exampleSite/public/plugins/lightbox2/dist/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/plugins/lightbox2/dist/images/next.png -------------------------------------------------------------------------------- /exampleSite/public/plugins/lightbox2/dist/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/plugins/lightbox2/dist/images/prev.png -------------------------------------------------------------------------------- /exampleSite/public/plugins/parallax/jquery.parallax-1.1.3.js: -------------------------------------------------------------------------------- 1 | /* 2 | Plugin: jQuery Parallax 3 | Version 1.1.3 4 | Author: Ian Lunn 5 | Twitter: @IanLunn 6 | Author URL: http://www.ianlunn.co.uk/ 7 | Plugin URL: http://www.ianlunn.co.uk/plugins/jquery-parallax/ 8 | 9 | Dual licensed under the MIT and GPL licenses: 10 | http://www.opensource.org/licenses/mit-license.php 11 | http://www.gnu.org/licenses/gpl.html 12 | */ 13 | 14 | (function( $ ){ 15 | var $window = $(window); 16 | var windowHeight = $window.height(); 17 | 18 | $window.resize(function () { 19 | windowHeight = $window.height(); 20 | }); 21 | 22 | $.fn.parallax = function(xpos, speedFactor, outerHeight) { 23 | var $this = $(this); 24 | var getHeight; 25 | var firstTop; 26 | var paddingTop = 0; 27 | 28 | //get the starting position of each element to have parallax applied to it 29 | $this.each(function(){ 30 | firstTop = $this.offset().top; 31 | }); 32 | 33 | if (outerHeight) { 34 | getHeight = function(jqo) { 35 | return jqo.outerHeight(true); 36 | }; 37 | } else { 38 | getHeight = function(jqo) { 39 | return jqo.height(); 40 | }; 41 | } 42 | 43 | // setup defaults if arguments aren't specified 44 | if (arguments.length < 1 || xpos === null) xpos = "50%"; 45 | if (arguments.length < 2 || speedFactor === null) speedFactor = 0.1; 46 | if (arguments.length < 3 || outerHeight === null) outerHeight = true; 47 | 48 | // function to be called whenever the window is scrolled or resized 49 | function update(){ 50 | var pos = $window.scrollTop(); 51 | 52 | $this.each(function(){ 53 | var $element = $(this); 54 | var top = $element.offset().top; 55 | var height = getHeight($element); 56 | 57 | // Check if totally above or totally below viewport 58 | if (top + height < pos || top > pos + windowHeight) { 59 | return; 60 | } 61 | 62 | $this.css('backgroundPosition', xpos + " " + Math.round((firstTop - pos) * speedFactor) + "px"); 63 | }); 64 | } 65 | 66 | $window.bind('scroll', update).resize(update); 67 | update(); 68 | }; 69 | })(jQuery); 70 | -------------------------------------------------------------------------------- /exampleSite/public/plugins/slick-carousel/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/plugins/slick-carousel/slick/ajax-loader.gif -------------------------------------------------------------------------------- /exampleSite/public/plugins/slick-carousel/slick/slick.css: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /exampleSite/public/plugins/themefisher-font/fonts/themefisher-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/plugins/themefisher-font/fonts/themefisher-font.eot -------------------------------------------------------------------------------- /exampleSite/public/plugins/themefisher-font/fonts/themefisher-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/plugins/themefisher-font/fonts/themefisher-font.ttf -------------------------------------------------------------------------------- /exampleSite/public/plugins/themefisher-font/fonts/themefisher-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/public/plugins/themefisher-font/fonts/themefisher-font.woff -------------------------------------------------------------------------------- /exampleSite/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | -------------------------------------------------------------------------------- /exampleSite/public/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | http://localhost:1313/navigator/examplesite/en/sitemap.xml 6 | 7 | 2018-07-08T12:22:40+06:00 8 | 9 | 10 | 11 | 12 | http://localhost:1313/navigator/examplesite/fr/sitemap.xml 13 | 14 | 2018-07-08T12:22:40+06:00 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /exampleSite/static/images/about/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/about/about-1.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/about/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/about/about-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/about/about-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/about/about-2.png -------------------------------------------------------------------------------- /exampleSite/static/images/about/about-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/about/about-header.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/about/member.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/about/member.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/blog/post-1.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/blog/post-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/blog/post-3.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/call-to-action/call-to-action-bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/call-to-action/call-to-action-bg-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/call-to-action/call-to-action-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/call-to-action/call-to-action-bg.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/client-logo/clients-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/client-logo/clients-1.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/client-logo/clients-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/client-logo/clients-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/client-logo/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/client-logo/logo-2.png -------------------------------------------------------------------------------- /exampleSite/static/images/client-logo/logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/client-logo/logo-3.png -------------------------------------------------------------------------------- /exampleSite/static/images/client-logo/logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/client-logo/logo-4.png -------------------------------------------------------------------------------- /exampleSite/static/images/client-logo/logo-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/client-logo/logo-5.png -------------------------------------------------------------------------------- /exampleSite/static/images/client-logo/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/client-logo/logo1.png -------------------------------------------------------------------------------- /exampleSite/static/images/company/company-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/company/company-image-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/company/company-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/company/company-image-3.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/company/company-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/company/company-image.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/favicon.ico -------------------------------------------------------------------------------- /exampleSite/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/favicon.png -------------------------------------------------------------------------------- /exampleSite/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/logo.png -------------------------------------------------------------------------------- /exampleSite/static/images/logos/lang-de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/logos/lang-de.gif -------------------------------------------------------------------------------- /exampleSite/static/images/logos/lang-en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/logos/lang-en.gif -------------------------------------------------------------------------------- /exampleSite/static/images/logos/lang-fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/logos/lang-fr.gif -------------------------------------------------------------------------------- /exampleSite/static/images/logos/lang-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/logos/lang-nl.gif -------------------------------------------------------------------------------- /exampleSite/static/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/marker.png -------------------------------------------------------------------------------- /exampleSite/static/images/portfolio/portfolio-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/portfolio/portfolio-1.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/portfolio/portfolio-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/portfolio/portfolio-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/portfolio/portfolio-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/portfolio/portfolio-3.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/portfolio/portfolio-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/portfolio/portfolio-4.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/portfolio/portfolio-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/portfolio/portfolio-5.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/portfolio/portfolio-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/portfolio/portfolio-6.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/portfolio/portfolio-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/portfolio/portfolio-7.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/portfolio/portfolio-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/portfolio/portfolio-8.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/pricing-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/pricing-bg.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/slider/video-player-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/slider/video-player-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/team/member-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/team/member-1.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/team/member-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/team/member-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/team/member-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/team/member-3.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/team/member-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/exampleSite/static/images/team/member-4.jpg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 |
4 |
5 |
6 |
7 |

404

8 |

Page Not Found

9 |

Sorry, but the page you were trying to view does not exist.

10 | Go Home 11 |
12 |
13 |
14 |
15 | 16 | {{ end }} 17 | -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{- partial "head.html" . -}} 4 | 5 | {{ partial "preloader.html" . }} 6 | {{- partial "header.html" . -}} 7 |
8 | {{- block "main" . }}{{- end }} 9 |
10 | {{- partial "footer.html" . -}} 11 | 12 | 13 | -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ partial "page-title.html" . }} 4 | 5 | {{ "" | safeHTML }} 6 |
7 |
8 |
9 | {{ range (.Paginator 6).Pages }} 10 | {{ "" | safeHTML }} 11 |
12 |
13 |
14 | Generic placeholder image 15 |
16 |
17 |

18 | {{ .Title }} 19 |

20 |
21 | 33 |
34 |

{{ .Summary }}

35 |
36 | Read more 37 |
38 |
39 | {{ "" | safeHTML }} 40 | {{ end }} 41 |
42 | {{ template "_internal/pagination.html" . }} 43 |
44 |
45 |
46 |
47 | {{ "" | safeHTML }} 48 | 49 | {{ end }} 50 | 51 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 |
4 |
5 |
6 |
7 | Post-Image 8 |

{{ .Title }}

9 | 21 | {{ .Content }} 22 |
23 |
24 |
25 |
26 | 27 | {{ end }} -------------------------------------------------------------------------------- /layouts/about/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ partial "page-title.html" . }} 4 | 5 | {{ partial "about-sm.html" . }} 6 | 7 | {{ partial "philosophy.html" . }} 8 | 9 | {{ partial "team.html" . }} 10 | 11 | {{ partial "cta.html" . }} 12 | 13 | {{ end }} 14 | 15 | -------------------------------------------------------------------------------- /layouts/contact/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ partial "page-title" . }} 4 | 5 | {{ partial "contact.html" . }} 6 | 7 | {{ end }} -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ partial "hero.html" . }} 4 | 5 | {{ partial "about-sm.html" . }} 6 | 7 | {{ partial "feature.html" . }} 8 | 9 | {{ partial "about.html" . }} 10 | 11 | {{ partial "workingprocess.html" . }} 12 | 13 | {{ partial "portfolio.html" . }} 14 | 15 | {{ partial "team.html" . }} 16 | 17 | {{ partial "pricing.html" . }} 18 | 19 | {{ partial "testimonial.html" . }} 20 | 21 | {{ partial "blog.html" . }} 22 | 23 | {{ partial "contact.html" . }} 24 | 25 | {{ end }} -------------------------------------------------------------------------------- /layouts/partials/about-sm.html: -------------------------------------------------------------------------------- 1 | {{ if .Site.Params.aboutSm.enable }} 2 | {{ "" | safeHTML }} 3 |
4 |
5 |
6 |
7 | {{ with .Site.Params.aboutSm.title }} 8 |

{{ . }}

9 | {{ end }} 10 |
11 |
12 | {{ with .Site.Params.aboutSm.description }} 13 |

{{ . | markdownify }}

14 | {{ end }} 15 |
16 |
17 |
18 |
19 | {{ "" | safeHTML }} 20 | {{ end }} -------------------------------------------------------------------------------- /layouts/partials/about.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.about }} 3 | {{ if .enable }} 4 | {{ "" | safeHTML }} 5 |
6 |
7 | {{ range .item }} 8 | {{ if .positionRight }} 9 |
10 |
11 |
12 |

{{ .title }}

13 |

14 | {{ .description }} 15 |

16 |
17 |
18 |
19 | about-image 20 |
21 |
22 | {{ else }} 23 |
24 |
25 | about-image 26 |
27 |
28 |
29 |

{{ .title }}

30 |

31 | {{ .description }} 32 |

33 |
34 |
35 |
36 | {{ end }} 37 | {{ end }} 38 |
39 |
40 | {{"" | safeHTML}} 41 | {{ end }} 42 | {{ end }} 43 | -------------------------------------------------------------------------------- /layouts/partials/blog.html: -------------------------------------------------------------------------------- 1 | {{ if .Site.Params.blog.enable }} 2 | {{ "" | safeHTML }} 3 |
4 |
5 |
6 |
7 |
8 | {{ with .Site.Params.blog.topTitle }}

{{ . }}

{{ end }} 9 | {{ with .Site.Params.blog.title }}

{{ . }}

{{ end }} 10 | {{ with .Site.Params.blog.subtitle }}

{{ . }}

{{ end }} 11 |
12 |
13 |
14 |
15 | {{ range first 3 .Site.RegularPages}} 16 | {{ "" | safeHTML }} 17 |
18 |
19 |
20 | Generic placeholder image 21 |
22 |
23 |

24 | {{ .Title }} 25 |

26 |
27 | 39 |
40 |

{{ .Summary }}

41 |
42 | Read more 43 |
44 |
45 | {{ "" | safeHTML }} 46 | {{ end }} 47 |
48 |
49 |
50 | {{ "" | safeHTML }} 51 | {{ end }} -------------------------------------------------------------------------------- /layouts/partials/clients.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.clients }} 3 | {{ if .enable }} 4 | {{ "" | safeHTML }} 5 |
6 |
7 |
8 |
9 | {{ with .image }}service-image{{ end }} 10 |
11 |
12 | {{ with .title }}

{{.}}

{{ end }} 13 | {{ with .description }}

{{.}}

{{ end }} 14 |
15 |
16 |
    17 | {{ range .servicelist }} 18 |
  • 19 | {{ .name }} 20 |
  • 21 | {{ end }} 22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 | {{ range .clientLogo }} 31 | client-logo 32 | {{ end }} 33 |
34 |
35 |
36 |
37 |
38 | {{ "" | safeHTML }} 39 | {{ end }} 40 | {{ end }} 41 | -------------------------------------------------------------------------------- /layouts/partials/cta.html: -------------------------------------------------------------------------------- 1 | {{ if .Site.Params.cta.enable }} 2 | {{ "" | safeHTML }} 3 |
4 |
5 |
6 |
7 | {{ with .Site.Params.cta.title }}

{{ . }}

{{ end }} 8 | {{ with .Site.Params.cta.subtitle }}

{{ . | safeHTML }}

{{ end }} 9 | {{ with .Site.Params.cta.btnText }}{{ . }}{{ end }} 10 |
11 |
12 |
13 |
14 | {{ "" | safeHTML }} 15 | {{ end }} 16 | -------------------------------------------------------------------------------- /layouts/partials/feature.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.feature }} 3 | {{ if .enable }} 4 | {{ "" | safeHTML }} 5 |
6 |
7 |
8 | {{ range .item }} 9 | {{ "" | safeHTML }} 10 |
11 |
12 |
13 | 14 |
15 |

{{ .title }}

16 |

{{ .description }}

17 |
18 |
19 | {{ "" | safeHTML }} 20 | {{ end }} 21 |
22 |
23 |
24 | {{ "" | safeHTML }} 25 | {{ end }} 26 | {{ end }} 27 | -------------------------------------------------------------------------------- /layouts/partials/flags.html: -------------------------------------------------------------------------------- 1 | 2 | {{ $icone_base_url := "images/logos/lang-" }} 3 | {{ $icone_end_url := ".gif" }} 4 | 5 | {{ $icone_url := delimit (slice $icone_base_url .liste.code $icone_end_url) "" }} 6 | 7 | {{ if eq (string .liste.code) (string .site.Language) }} 8 | IMAGE{{ .liste.code }} 9 | {{ else }} 10 | IMAGE{{ .liste.code }} 11 | {{ end }} 12 | 13 | -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {{ with .Site.Params.author }} {{ end }} 6 | {{ hugo.Generator }} 7 | 8 | {{ .Title }} 9 | 10 | {{ "" | safeHTML }} 11 | 12 | 13 | 14 | 15 | 16 | {{ "" | safeHTML }} 17 | 18 | 19 | {{"" | safeHTML}} 20 | {{ "" | safeHTML }} 21 | 22 | {{ "" | safeHTML}} 23 | 24 | {{ "" | safeHTML }} 25 | 26 | {{ "" | safeHTML }} 27 | 28 | 29 | {{ "" | safeHTML }} 30 | 31 | {{ $styles := resources.Get "css/style.css" | minify}} 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /layouts/partials/hero.html: -------------------------------------------------------------------------------- 1 | {{ if .Site.Params.hero.enable }} 2 | {{ "" | safeHTML }} 3 |
4 |
5 |
6 |
7 |
8 | video-thumb 9 | 10 | 11 | 12 |
13 |
14 |
15 |
16 | {{ with .Site.Params.hero.heading }} 17 |

{{ . }}

18 | {{ end }} 19 | {{ with .Site.Params.hero.description }} 20 |

{{ . }}

21 | {{ end }} 22 | {{ if .Site.Params.hero.button }} 23 | 28 | {{ end }} 29 |
30 |
31 |
32 |
33 |
34 | {{ end }} -------------------------------------------------------------------------------- /layouts/partials/page-title.html: -------------------------------------------------------------------------------- 1 | {{ "" | safeHTML }} 2 |
3 |
4 |
5 |
6 |

{{ .Title }}

7 | 15 |
16 |
17 |
18 |
-------------------------------------------------------------------------------- /layouts/partials/philosophy.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.philosophy }} 3 | {{ if .enable }} 4 | {{ "" | safeHTML }} 5 |
6 |
7 |
8 |
9 |
10 | {{ with .topTitle }}

{{ . }}

{{ end }} 11 | {{ with .title }} 12 |

{{ . }}

13 | 14 | {{ end }} 15 | {{ with .subtitle }}

{{ . }}

{{ end }} 16 |
17 |
18 |
19 |
20 |
21 |
22 | 29 |
30 | {{ range $index, $element := .tabItem }} 31 |
32 |
33 |
34 | {{ with .heading }}

{{ . }}

{{ end }} 35 | {{ with .content }}

{{ . | safeHTML }}

{{ end }} 36 |
37 |
38 | tab-image 39 |
40 |
41 |
42 | {{ end }} 43 |
44 |
45 |
46 |
47 |
48 |
49 | {{ "" | safeHTML }} 50 | {{ end }} 51 | {{ end }} 52 | -------------------------------------------------------------------------------- /layouts/partials/portfolio.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.portfolio }} 3 | {{ if .enable }} 4 | {{ "" | safeHTML }} 5 |
6 |
7 |
8 |
9 |
10 | {{ with .topTitle }} 11 |

{{ . }}

12 | {{ end }} 13 | {{ with .title }} 14 |

{{ . }}

15 | 16 | {{ end }} 17 | {{ with .subtitle }} 18 |

{{ . }}

19 | {{ end }} 20 |
21 |
22 |
23 |
24 |
25 |
26 | 27 | {{ range .filtermenu }} 28 | 29 | {{ end }} 30 |
31 |
32 |
33 |
34 | {{ range .item }} 35 |
36 |
37 | portfolio-image 38 |
39 | 40 | 41 | 42 |

43 | {{ .title }} 44 |

45 |
46 |
47 |
48 | {{ end }} 49 |
50 |
51 | 52 |
53 | {{ "" | safeHTML }} 54 | {{ end }} 55 | {{ end }} 56 | -------------------------------------------------------------------------------- /layouts/partials/preloader.html: -------------------------------------------------------------------------------- 1 | {{ "" | safeHTML }} 2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | {{ "" | safeHTML }} -------------------------------------------------------------------------------- /layouts/partials/pricing.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.pricing }} 3 | {{ if .enable }} 4 | {{ "" | safeHTML }} 5 |
6 |
7 |
8 |
9 |
10 | {{ with .topTitle }}

{{.}}

{{ end }} 11 | {{ with .title }} 12 |

{{.}}

13 | 14 | {{ end }} 15 | {{ with .subtitle }}

{{.}}

{{ end }} 16 |
17 |
18 |
19 |
20 | {{ range .item }} 21 | {{ "" | safeHTML }} 22 |
23 |
24 | {{ "" | safeHTML }} 25 |
26 | {{ with .name }}

{{.}}

{{ end }} 27 | {{ with .price }}{{.}}{{ end }} 28 | {{ with .description }}

{{.}}

{{ end }} 29 |
30 | {{ "" | safeHTML }} 31 |
    32 | {{ range .featurelist }} 33 |
  • {{.item}}
  • 34 | {{ end }} 35 |
36 | {{ "" | safeHTML }} 37 | {{.btnText}} 38 |
39 |
40 | {{ end }} 41 |
42 | 43 |
44 | 45 |
46 | {{ "" | safeHTML }} 47 | {{ end }} 48 | {{ end }} 49 | -------------------------------------------------------------------------------- /layouts/partials/service.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.service }} 3 | {{ if .enable }} 4 | {{ "" | safeHTML }} 5 |
6 |
7 |
8 |
9 |
10 | {{ with .topTitle }}

{{.}}

{{ end }} 11 | {{ with .title }}

{{.}}

{{ end }} 12 | {{ with .subtitle }}

{{.}}

{{ end }} 13 |
14 |
15 |
16 |
17 | {{ range .item }} 18 |
19 |
20 | {{ with .icon }}{{ end }} 21 | {{ with .title }}

{{.}}

{{ end }} 22 |
    23 | {{ range .list }} 24 |
  • {{.name}}
  • 25 | {{ end }} 26 |
27 |
28 |
29 | {{ end }} 30 |
31 |
32 |
33 | {{ "" | safeHTML }} 34 | {{ end }} 35 | {{ end }} 36 | -------------------------------------------------------------------------------- /layouts/partials/team.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.team }} 3 | {{ if .enable }} 4 | {{ "" | safeHTML }} 5 |
6 |
7 |
8 |
9 |
10 | {{ with .topTitle }}

{{ . }}

{{ end }} 11 | {{ with .title }} 12 |

{{ . }}

13 | 14 | {{ end }} 15 | {{ with .subtitle }}

{{ . }}

{{ end }} 16 |
17 |
18 |
19 |
20 | {{ range .member }} 21 | {{ "" | safeHTML }} 22 |
23 |
24 |
25 | team people 26 |
27 | {{ "" | safeHTML }} 28 |
29 |

{{ .name }}

30 | {{ .designation }} 31 |

{{ .description }}

32 |
    33 | {{ with .facebookURL }} 34 |
  • 35 | 36 | 37 | 38 |
  • 39 | {{ end }} 40 | {{ with .twitterURL }} 41 |
  • 42 | 43 | 44 | 45 |
  • 46 | {{ end }} 47 | {{ with .gplusURL }} 48 |
  • 49 | 50 | 51 | 52 |
  • 53 | {{ end }} 54 | {{ with .dribbbleURL }} 55 |
  • 56 | 57 | 58 | 59 |
  • 60 | {{ end }} 61 |
62 |
63 |
64 |
65 | {{ "" | safeHTML }} 66 | {{ end }} 67 | 68 |
69 |
70 |
71 | {{ "" | safeHTML }} 72 | {{ end }} 73 | {{ end }} 74 | -------------------------------------------------------------------------------- /layouts/partials/testimonial.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.testimonial }} 3 | {{ if .enable }} 4 |
5 |
6 |
7 |
8 | {{ "" | safeHTML }} 9 |
10 | {{ range .item }} 11 | {{ "" | safeHTML }} 12 |
13 | 14 | {{ "" | safeHTML }} 15 |
16 |

{{ .quote }}

17 |
18 | {{ "" | safeHTML }} 19 |
20 | client-image 21 |
22 |
23 |

{{ .clientName }}

24 | {{ .clientDesignation }} 25 |
26 |
27 | {{ end }} 28 |
29 |
30 |
31 |
32 |
33 | {{ "" | safeHTML }} 34 | {{ end }} 35 | {{ end }} 36 | -------------------------------------------------------------------------------- /layouts/partials/workingprocess.html: -------------------------------------------------------------------------------- 1 | {{ $data := index .Site.Data .Site.Language.Lang }} 2 | {{ with $data.workingprocess }} 3 | {{ if .enable }} 4 | {{ "" | safeHTML }} 5 |
6 |
7 |
8 |
9 |
10 | {{ with .topTitle }} 11 |

{{ . }}

12 | {{ end }} 13 | {{ with .title }} 14 |

{{ . }}

15 | 16 | {{ end }} 17 | {{ with .subtitle }} 18 |

{{ . }}

19 | {{ end }} 20 |
21 |
22 |
23 |
24 | {{ range $index, $element:= .item }} 25 |
26 |
27 | {{ with .number }} 28 | {{ . }}. 29 | {{ end }} 30 | {{ with .icon }} 31 | 32 | {{ end }} 33 | {{ with .title }} 34 |

{{ . }}

35 | {{ end }} 36 | {{ with .description }} 37 |

{{ . }}

38 | {{ end }} 39 |
40 |
41 | {{ if eq (mod $index 2) 1 }} 42 |
43 | {{ end }} 44 | {{ end }} 45 |
46 |
47 |
48 | {{ "" | safeHTML }} 49 | {{ end }} 50 | {{ end }} 51 | -------------------------------------------------------------------------------- /layouts/portfolio/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ partial "page-title" . }} 4 | 5 | {{ partial "portfolio.html" . }} 6 | 7 | {{ partial "workingprocess.html" . }} 8 | 9 | {{ partial "testimonial.html" . }} 10 | 11 | {{ end }} -------------------------------------------------------------------------------- /layouts/service/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ partial "page-title" . }} 4 | 5 | {{ partial "service.html" . }} 6 | 7 | {{ partial "clients.html" . }} 8 | 9 | {{ partial "team.html" . }} 10 | 11 | {{ partial "pricing.html" . }} 12 | 13 | {{ partial "testimonial.html" . }} 14 | 15 | {{ end }} -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | publish = "public" 3 | command = "hugo --minify --gc" 4 | 5 | [build.environment] 6 | HUGO_VERSION = "0.87.0" 7 | HUGO_BASEURL = "/" 8 | 9 | [[headers]] 10 | for = "/*" # This defines which paths this specific [[headers]] block will cover. 11 | 12 | [headers.values] 13 | X-Frame-Options = "DENY" 14 | X-XSS-Protection = "1; mode=block" 15 | Referrer-Policy = "same-origin" 16 | Strict-Transport-Security = "max-age=31536000; includeSubDomains; preload" 17 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "navigator-hugo", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "navigator-hugo", 9 | "version": "1.0.0", 10 | "license": "ISC" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "navigator-hugo", 3 | "version": "2.0.1", 4 | "license": "MIT", 5 | "author": "gethugothemes", 6 | "scripts": { 7 | "dev": "hugo server", 8 | "build": "hugo --gc --minify --templateMetrics --templateMetricsHints --buildDrafts --buildExpired --buildFuture --forceSyncStatic", 9 | "preview": "hugo server --disableFastRender --navigateToChanged --templateMetrics --templateMetricsHints --buildDrafts --buildExpired --buildFuture --watch --forceSyncStatic -e production --minify", 10 | "dev:example": "cd exampleSite; hugo server --themesDir ../..", 11 | "build:example": "cd exampleSite; hugo --themesDir ../.. --gc --minify --templateMetrics --templateMetricsHints --buildDrafts --buildExpired --buildFuture --forceSyncStatic", 12 | "preview:example": "cd exampleSite; hugo server --themesDir ../.. --disableFastRender --navigateToChanged --templateMetrics --templateMetricsHints --buildDrafts --buildExpired --buildFuture --watch --forceSyncStatic -e production --minify", 13 | "project-setup": "node ./scripts/projectSetup.js", 14 | "theme-setup": "node ./scripts/themeSetup.js" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /public/en/about/index.xml: -------------------------------------------------------------------------------- 1 | About Us ... on Example site multi-languagehttp://localhost:1313/navigator/examplesite/en/about/Recent content in About Us ... on Example site multi-languageHugoen-us -------------------------------------------------------------------------------- /public/en/blog/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://localhost:1313/navigator/examplesite/en/blog/ 2 | -------------------------------------------------------------------------------- /public/en/categories/index.xml: -------------------------------------------------------------------------------- 1 | Categories on Example site multi-languagehttp://localhost:1313/navigator/examplesite/en/categories/Recent content in Categories on Example site multi-languageHugoen-us -------------------------------------------------------------------------------- /public/en/categories/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://localhost:1313/navigator/examplesite/en/categories/ 2 | -------------------------------------------------------------------------------- /public/en/contact/index.xml: -------------------------------------------------------------------------------- 1 | Contact Us on Example site multi-languagehttp://localhost:1313/navigator/examplesite/en/contact/Recent content in Contact Us on Example site multi-languageHugoen-us -------------------------------------------------------------------------------- /public/en/portfolio/index.xml: -------------------------------------------------------------------------------- 1 | Portfolio on Example site multi-languagehttp://localhost:1313/navigator/examplesite/en/portfolio/Recent content in Portfolio on Example site multi-languageHugoen-us -------------------------------------------------------------------------------- /public/en/service/index.xml: -------------------------------------------------------------------------------- 1 | Our Services on Example site multi-languagehttp://localhost:1313/navigator/examplesite/en/service/Recent content in Our Services on Example site multi-languageHugoen-us -------------------------------------------------------------------------------- /public/en/tags/index.xml: -------------------------------------------------------------------------------- 1 | Tags on Example site multi-languagehttp://localhost:1313/navigator/examplesite/en/tags/Recent content in Tags on Example site multi-languageHugoen-us -------------------------------------------------------------------------------- /public/en/tags/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://localhost:1313/navigator/examplesite/en/tags/ 2 | -------------------------------------------------------------------------------- /public/fr/about/index.xml: -------------------------------------------------------------------------------- 1 | A propos de nous ... on FRANCAIS Example site multi-languagehttp://localhost:1313/navigator/examplesite/fr/about/Recent content in A propos de nous ... on FRANCAIS Example site multi-languageHugofr-fr -------------------------------------------------------------------------------- /public/fr/blog/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://localhost:1313/navigator/examplesite/fr/blog/ 2 | -------------------------------------------------------------------------------- /public/fr/categories/index.xml: -------------------------------------------------------------------------------- 1 | Categories on FRANCAIS Example site multi-languagehttp://localhost:1313/navigator/examplesite/fr/categories/Recent content in Categories on FRANCAIS Example site multi-languageHugofr-fr -------------------------------------------------------------------------------- /public/fr/categories/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://localhost:1313/navigator/examplesite/fr/categories/ 2 | -------------------------------------------------------------------------------- /public/fr/contact/index.xml: -------------------------------------------------------------------------------- 1 | FRANCAIS Contactez Nous on FRANCAIS Example site multi-languagehttp://localhost:1313/navigator/examplesite/fr/contact/Recent content in FRANCAIS Contactez Nous on FRANCAIS Example site multi-languageHugofr-fr -------------------------------------------------------------------------------- /public/fr/portfolio/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FRANCAIS Portfolio on FRANCAIS Example site multi-language 5 | http://localhost:1313/navigator/examplesite/fr/portfolio/ 6 | Recent content in FRANCAIS Portfolio on FRANCAIS Example site multi-language 7 | Hugo 8 | fr-fr 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/fr/service/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FRANCAIS Our Services on FRANCAIS Example site multi-language 5 | http://localhost:1313/navigator/examplesite/fr/service/ 6 | Recent content in FRANCAIS Our Services on FRANCAIS Example site multi-language 7 | Hugo 8 | fr-fr 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/fr/tags/index.xml: -------------------------------------------------------------------------------- 1 | Tags on FRANCAIS Example site multi-languagehttp://localhost:1313/navigator/examplesite/fr/tags/Recent content in Tags on FRANCAIS Example site multi-languageHugofr-fr -------------------------------------------------------------------------------- /public/fr/tags/page/1/index.html: -------------------------------------------------------------------------------- 1 | http://localhost:1313/navigator/examplesite/fr/tags/ 2 | -------------------------------------------------------------------------------- /public/images/about/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/about/about-1.jpg -------------------------------------------------------------------------------- /public/images/about/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/about/about-2.jpg -------------------------------------------------------------------------------- /public/images/about/about-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/about/about-2.png -------------------------------------------------------------------------------- /public/images/about/about-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/about/about-header.jpg -------------------------------------------------------------------------------- /public/images/about/member.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/about/member.jpg -------------------------------------------------------------------------------- /public/images/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/blog/post-1.jpg -------------------------------------------------------------------------------- /public/images/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/blog/post-2.jpg -------------------------------------------------------------------------------- /public/images/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/blog/post-3.jpg -------------------------------------------------------------------------------- /public/images/call-to-action/call-to-action-bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/call-to-action/call-to-action-bg-2.jpg -------------------------------------------------------------------------------- /public/images/call-to-action/call-to-action-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/call-to-action/call-to-action-bg.jpg -------------------------------------------------------------------------------- /public/images/client-logo/clients-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/client-logo/clients-1.jpg -------------------------------------------------------------------------------- /public/images/client-logo/clients-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/client-logo/clients-2.jpg -------------------------------------------------------------------------------- /public/images/client-logo/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/client-logo/logo-2.png -------------------------------------------------------------------------------- /public/images/client-logo/logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/client-logo/logo-3.png -------------------------------------------------------------------------------- /public/images/client-logo/logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/client-logo/logo-4.png -------------------------------------------------------------------------------- /public/images/client-logo/logo-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/client-logo/logo-5.png -------------------------------------------------------------------------------- /public/images/client-logo/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/client-logo/logo1.png -------------------------------------------------------------------------------- /public/images/company/company-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/company/company-image-2.jpg -------------------------------------------------------------------------------- /public/images/company/company-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/company/company-image-3.jpg -------------------------------------------------------------------------------- /public/images/company/company-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/company/company-image.jpg -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/logo.png -------------------------------------------------------------------------------- /public/images/logos/lang-de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/logos/lang-de.gif -------------------------------------------------------------------------------- /public/images/logos/lang-en.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/logos/lang-en.gif -------------------------------------------------------------------------------- /public/images/logos/lang-fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/logos/lang-fr.gif -------------------------------------------------------------------------------- /public/images/logos/lang-nl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/logos/lang-nl.gif -------------------------------------------------------------------------------- /public/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/marker.png -------------------------------------------------------------------------------- /public/images/portfolio/portfolio-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/portfolio/portfolio-1.jpg -------------------------------------------------------------------------------- /public/images/portfolio/portfolio-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/portfolio/portfolio-2.jpg -------------------------------------------------------------------------------- /public/images/portfolio/portfolio-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/portfolio/portfolio-3.jpg -------------------------------------------------------------------------------- /public/images/portfolio/portfolio-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/portfolio/portfolio-4.jpg -------------------------------------------------------------------------------- /public/images/portfolio/portfolio-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/portfolio/portfolio-5.jpg -------------------------------------------------------------------------------- /public/images/portfolio/portfolio-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/portfolio/portfolio-6.jpg -------------------------------------------------------------------------------- /public/images/portfolio/portfolio-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/portfolio/portfolio-7.jpg -------------------------------------------------------------------------------- /public/images/portfolio/portfolio-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/portfolio/portfolio-8.jpg -------------------------------------------------------------------------------- /public/images/pricing-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/pricing-bg.jpg -------------------------------------------------------------------------------- /public/images/slider/video-player-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/slider/video-player-thumb.jpg -------------------------------------------------------------------------------- /public/images/team/member-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/team/member-1.jpg -------------------------------------------------------------------------------- /public/images/team/member-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/team/member-2.jpg -------------------------------------------------------------------------------- /public/images/team/member-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/team/member-3.jpg -------------------------------------------------------------------------------- /public/images/team/member-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/images/team/member-4.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | http://localhost:1313/navigator/examplesite/en/ 2 | -------------------------------------------------------------------------------- /public/js/script.min.js: -------------------------------------------------------------------------------- 1 | $(window).on("load",function(){$("#preloader").fadeOut("slow",function(){$(this).remove()})}),function(e){"use strict";e(".play-icon i").click(function(){var t='';e(this).replaceWith(t)}),setTimeout(function(){var t=e(".filtr-container").filterizr({});e(".filtr-control").on("click",function(){e(".filtr-control").removeClass("active"),e(this).addClass("active")})},500),e(".testimonial-slider").slick({slidesToShow:2,slidesToScroll:1,infinite:!0,arrows:!1,autoplay:!0,autoplaySpeed:2e3,responsive:[{breakpoint:600,settings:{slidesToShow:1,slidesToScroll:2}},{breakpoint:480,settings:{slidesToShow:1,slidesToScroll:1}}]}),e(".clients-logo-slider").slick({infinite:!0,arrows:!1,autoplay:!0,autoplaySpeed:2e3,slidesToShow:5,slidesToScroll:1}),e(".company-gallery").slick({infinite:!0,arrows:!1,autoplay:!0,autoplaySpeed:2e3,slidesToShow:5,slidesToScroll:1}),e(".counter").each(function(){var t=e(this),n=t.attr("data-count");e({countNum:t.text()}).animate({countNum:n},{duration:1500,easing:"linear",step:function(){t.text(Math.floor(this.countNum))},complete:function(){t.text(this.countNum)}})}),e("#contact-submit").click(function(t){t.preventDefault();var n=!1,o=e("#name").val(),s=e("#email").val(),i=e("#subject").val(),a=e("#message").val();o.length==0?(n=!0,e("#name").css("border-color","#D8000C")):e("#name").css("border-color","#666"),s.length==0||s.indexOf("@")=="-1"?(n=!0,e("#email").css("border-color","#D8000C")):e("#email").css("border-color","#666"),i.length==0?(n=!0,e("#subject").css("border-color","#D8000C")):e("#subject").css("border-color","#666"),a.length==0?(n=!0,e("#message").css("border-color","#D8000C")):e("#message").css("border-color","#666"),n==!1&&(e("#contact-submit").attr({disabled:"false",value:"Sending..."}),e.post("sendmail.php",e("#contact-form").serialize(),function(t){t=="sent"?(e("#cf-submit").remove(),e("#mail-success").fadeIn(500)):(e("#mail-fail").fadeIn(500),e("#contact-submit").removeAttr("disabled").attr("value","Send The Message"))}))})}(jQuery),window.marker=null;function initialize(){var n,s,o=$("#map").data("lat"),i=$("#map").data("long"),t=new google.maps.LatLng(o,i),a=[{stylers:[{hue:"#ff61a6"},{visibility:"on"},{invert_lightness:!0},{saturation:40},{lightness:10}]}],r={center:t,mapTypeId:google.maps.MapTypeId.ROADMAP,zoom:9,backgroundColor:"#000",zoom:17,panControl:!1,zoomControl:!0,mapTypeControl:!1,scaleControl:!1,streetViewControl:!1,overviewMapControl:!1,zoomControlOptions:{style:google.maps.ZoomControlStyle.LARGE}},e=new google.maps.Map(document.getElementById("map"),r),c=new google.maps.StyledMapType(a,{name:"Grayscale"});e.mapTypes.set("grey",c),e.setMapTypeId("grey"),n=$("#map").data("marker"),s=new google.maps.MarkerImage(n,null,null,null,new google.maps.Size(25,33)),marker=new google.maps.Marker({position:t,map:e,icon:s,title:"navigator"})}var map=$("#map");map.length!=0&&google.maps.event.addDomListener(window,"load",initialize) -------------------------------------------------------------------------------- /public/plugins/lightbox2/dist/css/lightbox.min.css: -------------------------------------------------------------------------------- 1 | .lb-loader,.lightbox{text-align:center;line-height:0}body:after{content:url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);display:none}.lb-dataContainer:after,.lb-outerContainer:after{content:"";clear:both}body.lb-disable-scrolling{overflow:hidden}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:#000;filter:alpha(Opacity=80);opacity:.8;display:none}.lightbox{position:absolute;left:0;width:100%;z-index:10000;font-weight:400}.lightbox .lb-image{display:block;height:auto;max-width:inherit;max-height:none;border-radius:3px;border:4px solid #fff}.lightbox a img{border:none}.lb-outerContainer{position:relative;width:250px;height:250px;margin:0 auto;border-radius:4px;background-color:#fff}.lb-loader,.lb-nav{position:absolute;left:0}.lb-outerContainer:after{display:table}.lb-loader{top:43%;height:25%;width:100%}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;background:url(../images/loading.gif) no-repeat}.lb-nav{top:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:0;background-image:url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)}.lb-next,.lb-prev{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;background:url(../images/prev.png) left 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-prev:hover{filter:alpha(Opacity=100);opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;background:url(../images/next.png) right 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-next:hover{filter:alpha(Opacity=100);opacity:1}.lb-dataContainer{margin:0 auto;padding-top:5px;width:100%;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.lb-dataContainer:after{display:table}.lb-data{padding:0 4px;color:#ccc}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:700;line-height:1em}.lb-data .lb-caption a{color:#4ae}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#999}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;background:url(../images/close.png) top right no-repeat;text-align:right;outline:0;filter:alpha(Opacity=70);opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.lb-data .lb-close:hover{cursor:pointer;filter:alpha(Opacity=100);opacity:1} -------------------------------------------------------------------------------- /public/plugins/lightbox2/dist/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/plugins/lightbox2/dist/images/close.png -------------------------------------------------------------------------------- /public/plugins/lightbox2/dist/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/plugins/lightbox2/dist/images/loading.gif -------------------------------------------------------------------------------- /public/plugins/lightbox2/dist/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/plugins/lightbox2/dist/images/next.png -------------------------------------------------------------------------------- /public/plugins/lightbox2/dist/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/plugins/lightbox2/dist/images/prev.png -------------------------------------------------------------------------------- /public/plugins/parallax/jquery.parallax-1.1.3.js: -------------------------------------------------------------------------------- 1 | /* 2 | Plugin: jQuery Parallax 3 | Version 1.1.3 4 | Author: Ian Lunn 5 | Twitter: @IanLunn 6 | Author URL: http://www.ianlunn.co.uk/ 7 | Plugin URL: http://www.ianlunn.co.uk/plugins/jquery-parallax/ 8 | 9 | Dual licensed under the MIT and GPL licenses: 10 | http://www.opensource.org/licenses/mit-license.php 11 | http://www.gnu.org/licenses/gpl.html 12 | */ 13 | 14 | (function( $ ){ 15 | var $window = $(window); 16 | var windowHeight = $window.height(); 17 | 18 | $window.resize(function () { 19 | windowHeight = $window.height(); 20 | }); 21 | 22 | $.fn.parallax = function(xpos, speedFactor, outerHeight) { 23 | var $this = $(this); 24 | var getHeight; 25 | var firstTop; 26 | var paddingTop = 0; 27 | 28 | //get the starting position of each element to have parallax applied to it 29 | $this.each(function(){ 30 | firstTop = $this.offset().top; 31 | }); 32 | 33 | if (outerHeight) { 34 | getHeight = function(jqo) { 35 | return jqo.outerHeight(true); 36 | }; 37 | } else { 38 | getHeight = function(jqo) { 39 | return jqo.height(); 40 | }; 41 | } 42 | 43 | // setup defaults if arguments aren't specified 44 | if (arguments.length < 1 || xpos === null) xpos = "50%"; 45 | if (arguments.length < 2 || speedFactor === null) speedFactor = 0.1; 46 | if (arguments.length < 3 || outerHeight === null) outerHeight = true; 47 | 48 | // function to be called whenever the window is scrolled or resized 49 | function update(){ 50 | var pos = $window.scrollTop(); 51 | 52 | $this.each(function(){ 53 | var $element = $(this); 54 | var top = $element.offset().top; 55 | var height = getHeight($element); 56 | 57 | // Check if totally above or totally below viewport 58 | if (top + height < pos || top > pos + windowHeight) { 59 | return; 60 | } 61 | 62 | $this.css('backgroundPosition', xpos + " " + Math.round((firstTop - pos) * speedFactor) + "px"); 63 | }); 64 | } 65 | 66 | $window.bind('scroll', update).resize(update); 67 | update(); 68 | }; 69 | })(jQuery); 70 | -------------------------------------------------------------------------------- /public/plugins/slick-carousel/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/plugins/slick-carousel/slick/ajax-loader.gif -------------------------------------------------------------------------------- /public/plugins/slick-carousel/slick/slick.css: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /public/plugins/themefisher-font/fonts/themefisher-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/plugins/themefisher-font/fonts/themefisher-font.eot -------------------------------------------------------------------------------- /public/plugins/themefisher-font/fonts/themefisher-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/plugins/themefisher-font/fonts/themefisher-font.ttf -------------------------------------------------------------------------------- /public/plugins/themefisher-font/fonts/themefisher-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/public/plugins/themefisher-font/fonts/themefisher-font.woff -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- 1 | http://localhost:1313/navigator/examplesite/en/sitemap.xml2018-07-08T12:22:40+06:00http://localhost:1313/navigator/examplesite/fr/sitemap.xml2018-07-08T12:22:40+06:00 -------------------------------------------------------------------------------- /scripts/projectSetup.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | const path = require("path"); 3 | 4 | const getFolderName = (rootfolder) => { 5 | const configPath = path.join( 6 | rootfolder, 7 | "exampleSite/config/_default/hugo.toml" 8 | ); 9 | const getConfig = fs.readFileSync(configPath, "utf8"); 10 | const match = getConfig.match(/theme\s*=\s*\[?"([^"\]]+)"\]?/); 11 | let selectedTheme = null; 12 | if (match && match[1]) { 13 | selectedTheme = match[1]; 14 | } 15 | return selectedTheme; 16 | }; 17 | 18 | const deleteFolder = (folderPath) => { 19 | if (fs.existsSync(folderPath)) { 20 | fs.rmSync(folderPath, { recursive: true, force: true }); 21 | } 22 | }; 23 | 24 | const createNewfolder = (rootfolder, folderName) => { 25 | const newFolder = path.join(rootfolder, folderName); 26 | fs.mkdirSync(newFolder, { recursive: true }); 27 | return newFolder; 28 | }; 29 | 30 | const iterateFilesAndFolders = (rootFolder, { destinationRoot }) => { 31 | const directory = path.join(rootFolder); 32 | const items = fs.readdirSync(directory, { withFileTypes: true }); 33 | items.forEach((item) => { 34 | if (item.isDirectory()) { 35 | createNewfolder(destinationRoot, item.name); 36 | iterateFilesAndFolders(path.join(directory, item.name), { 37 | currentFolder: item.name, 38 | destinationRoot: path.join(destinationRoot, item.name), 39 | }); 40 | } else { 41 | const sourceFile = path.join(directory, item.name); 42 | const destinationFile = path.join(destinationRoot, item.name); 43 | fs.renameSync(sourceFile, destinationFile); 44 | } 45 | }); 46 | }; 47 | 48 | const setupProject = () => { 49 | const rootfolder = path.join(__dirname, "../"); 50 | if (!fs.existsSync(path.join(rootfolder, "themes"))) { 51 | const folderList = ["layouts", "assets", "static"]; 52 | const folderName = getFolderName(rootfolder); 53 | const newfolderName = createNewfolder( 54 | path.join(rootfolder, "themes"), 55 | folderName 56 | ); 57 | 58 | folderList.forEach((folder) => { 59 | const source = path.join(rootfolder, folder); 60 | const destination = path.join(newfolderName, folder); 61 | if (fs.existsSync(source)) { 62 | fs.mkdirSync(destination, { recursive: true }); 63 | iterateFilesAndFolders(source, { 64 | currentFolder: folder, 65 | destinationRoot: destination, 66 | }); 67 | deleteFolder(source); 68 | } 69 | }); 70 | 71 | const exampleSite = path.join(rootfolder, "exampleSite"); 72 | iterateFilesAndFolders(exampleSite, { destinationRoot: rootfolder }); 73 | deleteFolder(exampleSite); 74 | } 75 | }; 76 | 77 | setupProject(); 78 | -------------------------------------------------------------------------------- /scripts/themeSetup.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | const path = require("path"); 3 | 4 | const createNewfolder = (rootfolder, folderName) => { 5 | const newFolder = path.join(rootfolder, folderName); 6 | fs.mkdirSync(newFolder, { recursive: true }); 7 | return newFolder; 8 | }; 9 | 10 | const deleteFolder = (folderPath) => { 11 | if (fs.existsSync(folderPath)) { 12 | fs.rmSync(folderPath, { recursive: true, force: true }); 13 | } 14 | }; 15 | 16 | const getFolderName = (rootfolder) => { 17 | const configPath = path.join( 18 | rootfolder, 19 | "exampleSite/config/_default/hugo.toml" 20 | ); 21 | const getConfig = fs.readFileSync(configPath, "utf8"); 22 | const match = getConfig.match(/theme\s*=\s*\[?"([^"\]]+)"\]?/); 23 | let selectedTheme = null; 24 | if (match && match[1]) { 25 | selectedTheme = match[1]; 26 | } 27 | return selectedTheme; 28 | }; 29 | 30 | const iterateFilesAndFolders = (rootFolder, { destinationRoot }) => { 31 | const directory = path.join(rootFolder); 32 | const items = fs.readdirSync(directory, { withFileTypes: true }); 33 | items.forEach((item) => { 34 | if (item.isDirectory()) { 35 | createNewfolder(destinationRoot, item.name); 36 | iterateFilesAndFolders(path.join(directory, item.name), { 37 | currentFolder: item.name, 38 | destinationRoot: path.join(destinationRoot, item.name), 39 | }); 40 | } else { 41 | const sourceFile = path.join(directory, item.name); 42 | const destinationFile = path.join(destinationRoot, item.name); 43 | fs.renameSync(sourceFile, destinationFile); 44 | } 45 | }); 46 | }; 47 | 48 | const setupTheme = () => { 49 | const rootFolder = path.join(__dirname, "../"); 50 | 51 | if (!fs.existsSync(path.join(rootFolder, "exampleSite"))) { 52 | const includesFiles = [ 53 | "tailwind.config.js", 54 | "postcss.config.js", 55 | "go.mod", 56 | "hugo.toml", 57 | "assets", 58 | "config", 59 | "data", 60 | "content", 61 | "i18n", 62 | "static", 63 | ]; 64 | 65 | const folder = createNewfolder(rootFolder, "exampleSite"); 66 | 67 | fs.readdirSync(rootFolder, { withFileTypes: true }).forEach((file) => { 68 | if (includesFiles.includes(file.name)) { 69 | if (file.isDirectory()) { 70 | const destination = path.join(rootFolder, "exampleSite", file.name); 71 | fs.mkdirSync(destination, { recursive: true }); 72 | iterateFilesAndFolders(path.join(rootFolder, file.name), { 73 | destinationRoot: destination, 74 | }); 75 | deleteFolder(path.join(rootFolder, file.name)); 76 | } else { 77 | fs.renameSync( 78 | path.join(rootFolder, file.name), 79 | path.join(folder, file.name) 80 | ); 81 | } 82 | } 83 | }); 84 | 85 | const themes = path.join(rootFolder, "themes"); 86 | iterateFilesAndFolders(path.join(themes, getFolderName(rootFolder)), { 87 | destinationRoot: rootFolder, 88 | }); 89 | deleteFolder(themes); 90 | } 91 | }; 92 | 93 | setupTheme(); 94 | -------------------------------------------------------------------------------- /static/plugins/lightbox2/dist/css/lightbox.min.css: -------------------------------------------------------------------------------- 1 | .lb-loader,.lightbox{text-align:center;line-height:0}body:after{content:url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);display:none}.lb-dataContainer:after,.lb-outerContainer:after{content:"";clear:both}body.lb-disable-scrolling{overflow:hidden}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:#000;filter:alpha(Opacity=80);opacity:.8;display:none}.lightbox{position:absolute;left:0;width:100%;z-index:10000;font-weight:400}.lightbox .lb-image{display:block;height:auto;max-width:inherit;max-height:none;border-radius:3px;border:4px solid #fff}.lightbox a img{border:none}.lb-outerContainer{position:relative;width:250px;height:250px;margin:0 auto;border-radius:4px;background-color:#fff}.lb-loader,.lb-nav{position:absolute;left:0}.lb-outerContainer:after{display:table}.lb-loader{top:43%;height:25%;width:100%}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;background:url(../images/loading.gif) no-repeat}.lb-nav{top:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:0;background-image:url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)}.lb-next,.lb-prev{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;background:url(../images/prev.png) left 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-prev:hover{filter:alpha(Opacity=100);opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;background:url(../images/next.png) right 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-next:hover{filter:alpha(Opacity=100);opacity:1}.lb-dataContainer{margin:0 auto;padding-top:5px;width:100%;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.lb-dataContainer:after{display:table}.lb-data{padding:0 4px;color:#ccc}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:700;line-height:1em}.lb-data .lb-caption a{color:#4ae}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#999}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;background:url(../images/close.png) top right no-repeat;text-align:right;outline:0;filter:alpha(Opacity=70);opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.lb-data .lb-close:hover{cursor:pointer;filter:alpha(Opacity=100);opacity:1} -------------------------------------------------------------------------------- /static/plugins/lightbox2/dist/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/static/plugins/lightbox2/dist/images/close.png -------------------------------------------------------------------------------- /static/plugins/lightbox2/dist/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/static/plugins/lightbox2/dist/images/loading.gif -------------------------------------------------------------------------------- /static/plugins/lightbox2/dist/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/static/plugins/lightbox2/dist/images/next.png -------------------------------------------------------------------------------- /static/plugins/lightbox2/dist/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/static/plugins/lightbox2/dist/images/prev.png -------------------------------------------------------------------------------- /static/plugins/parallax/jquery.parallax-1.1.3.js: -------------------------------------------------------------------------------- 1 | /* 2 | Plugin: jQuery Parallax 3 | Version 1.1.3 4 | Author: Ian Lunn 5 | Twitter: @IanLunn 6 | Author URL: http://www.ianlunn.co.uk/ 7 | Plugin URL: http://www.ianlunn.co.uk/plugins/jquery-parallax/ 8 | 9 | Dual licensed under the MIT and GPL licenses: 10 | http://www.opensource.org/licenses/mit-license.php 11 | http://www.gnu.org/licenses/gpl.html 12 | */ 13 | 14 | (function( $ ){ 15 | var $window = $(window); 16 | var windowHeight = $window.height(); 17 | 18 | $window.resize(function () { 19 | windowHeight = $window.height(); 20 | }); 21 | 22 | $.fn.parallax = function(xpos, speedFactor, outerHeight) { 23 | var $this = $(this); 24 | var getHeight; 25 | var firstTop; 26 | var paddingTop = 0; 27 | 28 | //get the starting position of each element to have parallax applied to it 29 | $this.each(function(){ 30 | firstTop = $this.offset().top; 31 | }); 32 | 33 | if (outerHeight) { 34 | getHeight = function(jqo) { 35 | return jqo.outerHeight(true); 36 | }; 37 | } else { 38 | getHeight = function(jqo) { 39 | return jqo.height(); 40 | }; 41 | } 42 | 43 | // setup defaults if arguments aren't specified 44 | if (arguments.length < 1 || xpos === null) xpos = "50%"; 45 | if (arguments.length < 2 || speedFactor === null) speedFactor = 0.1; 46 | if (arguments.length < 3 || outerHeight === null) outerHeight = true; 47 | 48 | // function to be called whenever the window is scrolled or resized 49 | function update(){ 50 | var pos = $window.scrollTop(); 51 | 52 | $this.each(function(){ 53 | var $element = $(this); 54 | var top = $element.offset().top; 55 | var height = getHeight($element); 56 | 57 | // Check if totally above or totally below viewport 58 | if (top + height < pos || top > pos + windowHeight) { 59 | return; 60 | } 61 | 62 | $this.css('backgroundPosition', xpos + " " + Math.round((firstTop - pos) * speedFactor) + "px"); 63 | }); 64 | } 65 | 66 | $window.bind('scroll', update).resize(update); 67 | update(); 68 | }; 69 | })(jQuery); 70 | -------------------------------------------------------------------------------- /static/plugins/slick-carousel/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/static/plugins/slick-carousel/slick/ajax-loader.gif -------------------------------------------------------------------------------- /static/plugins/slick-carousel/slick/slick.css: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /static/plugins/themefisher-font/fonts/themefisher-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/static/plugins/themefisher-font/fonts/themefisher-font.eot -------------------------------------------------------------------------------- /static/plugins/themefisher-font/fonts/themefisher-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/static/plugins/themefisher-font/fonts/themefisher-font.ttf -------------------------------------------------------------------------------- /static/plugins/themefisher-font/fonts/themefisher-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/navigator-hugo/c1b67609acea1bd8c8bf5f752851e0f62f67ed0c/static/plugins/themefisher-font/fonts/themefisher-font.woff -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- 1 | name = "Navigator Hugo" 2 | license = "MIT" 3 | licenselink = "https://github.com/gethugothemes/navigator-hugo/blob/master/LICENSE" 4 | description = "Navigator is a business theme powered by Hugo. It also could be used for a personal portfolio." 5 | homepage = "https://gethugothemes.com/products/navigator/" 6 | demosite = "https://demo.gethugothemes.com/navigator/" 7 | tags = ['landing-page', 'business', 'agency-template', 'multilingual', 'themefisher', 'hugo-theme', 'hugo-templates', 'bootstrap', 'blog', 'responsive', 'clean', 'simple', 'company', 'projects', 'dark', 'creative', 'contact-form', 'custom-themes', 'mobile', 'flexbox', 'minimalistic', 'gethugothemes'] 8 | features = ['bootstrap4','responsive','multilingual'] 9 | min_version = "0.147.2" 10 | 11 | [author] 12 | name = "Gethugothemes" 13 | homepage = "http://gethugothemes.com/" 14 | --------------------------------------------------------------------------------