├── .editorconfig ├── .gitignore ├── .hugo_build.lock ├── LICENSE.md ├── README.md ├── archetypes ├── blog.md └── pages.md ├── config.toml ├── exampleSite ├── .gitignore ├── LICENSE.md ├── archetypes │ ├── blog.md │ └── pages.md ├── bin │ └── hugo-server-sh ├── config │ ├── .config.w3css-basic-exampleSite.toml │ ├── _default │ │ ├── config.toml │ │ ├── markup.toml │ │ └── params.toml │ └── example │ │ ├── config.toml │ │ ├── markup.toml │ │ └── params.toml ├── content │ ├── .marquee.md │ ├── README.md │ ├── blog │ │ ├── 1985 │ │ │ └── 03 │ │ │ │ └── emacs-jokes.md │ │ ├── 2017 │ │ │ ├── 10 │ │ │ │ └── golang-a-closer-look.md │ │ │ ├── 11 │ │ │ │ ├── hugo-dolor.md │ │ │ │ ├── hugo-highlight-chromastyles.md │ │ │ │ ├── hugo-ipsum.md │ │ │ │ └── hugo-lorem.md │ │ │ └── 09 │ │ │ │ └── emacs-it-all-starts-here.md │ │ ├── 2018 │ │ │ └── 05 │ │ │ │ └── hugo-amet │ │ │ │ ├── golang.png │ │ │ │ ├── hugo-lorem.png │ │ │ │ ├── img │ │ │ │ ├── adventure-2528477_640.jpg │ │ │ │ ├── coffee-cup-2317201_640.jpg │ │ │ │ └── organic-1280537_640.jpg │ │ │ │ └── index.md │ │ └── .marquee.md │ ├── contact │ │ ├── .marquee.md │ │ └── index.md │ ├── faq │ │ ├── .marquee.md │ │ ├── img │ │ │ └── pixabay.com │ │ │ │ ├── faq.png │ │ │ │ └── light-bulb-1002783_640.jpg │ │ ├── index.md │ │ └── teaser.jpg │ ├── pages │ │ ├── .marquee.md │ │ ├── _index.md │ │ ├── folder10 │ │ │ ├── _index.md │ │ │ ├── malesuada-massa.md │ │ │ └── neque-nec.md │ │ ├── folder20 │ │ │ ├── _index.md │ │ │ ├── estdui-fermentum.md │ │ │ ├── felis-vel-velit.md │ │ │ ├── folder21 │ │ │ │ ├── _index.md │ │ │ │ ├── folder211 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── phasellus.md │ │ │ │ │ └── rutrum.md │ │ │ │ ├── nullam.md │ │ │ │ └── vestibulum.md │ │ │ ├── magna-orci-ultrices.md │ │ │ ├── nam-asapien.md │ │ │ ├── neque-orci.md │ │ │ └── vestibulum-convallis.md │ │ ├── front │ │ │ ├── _index.md │ │ │ ├── features │ │ │ │ ├── 01.md │ │ │ │ ├── 02.md │ │ │ │ ├── 03.md │ │ │ │ ├── 04.md │ │ │ │ ├── 05.md │ │ │ │ ├── 06.md │ │ │ │ └── _index.md │ │ │ └── photocards │ │ │ │ ├── 01.md │ │ │ │ ├── 02.md │ │ │ │ ├── 03.md │ │ │ │ ├── 04.md │ │ │ │ ├── 05.md │ │ │ │ ├── 06.md │ │ │ │ ├── 07.md │ │ │ │ ├── 08.md │ │ │ │ ├── 09.md │ │ │ │ └── _index.md │ │ ├── hugo-theme-w3css-basic │ │ │ ├── _index.md │ │ │ ├── hugoBasicExample │ │ │ │ ├── _index.md │ │ │ │ ├── about.md │ │ │ │ ├── creating-a-new-theme.md │ │ │ │ ├── goisforlovers.md │ │ │ │ ├── hugoisforlovers.md │ │ │ │ └── migrate-from-jekyll.md │ │ │ ├── images-taken-from │ │ │ │ ├── _index.md │ │ │ │ ├── bitbucket-teaserpics.md │ │ │ │ ├── gohugoio-teaserpics.md │ │ │ │ ├── pixabay-clients.md │ │ │ │ ├── pixabay-jumbotrons.md │ │ │ │ ├── pixabay-photocards.md │ │ │ │ ├── pixabay-teaserpics.md │ │ │ │ ├── pixabay-testimonials.md │ │ │ │ └── wikipedia-teaserpics.md │ │ │ ├── page-shortcodes │ │ │ │ ├── img │ │ │ │ │ └── pixabay.com │ │ │ │ │ │ └── penguin-2104173_1920.jpg │ │ │ │ ├── index.md │ │ │ │ └── pdf │ │ │ │ │ ├── FooBar.pdf │ │ │ │ │ └── HelloWorld.pdf │ │ │ └── readme │ │ │ │ ├── img │ │ │ │ └── pixabay.com │ │ │ │ │ └── coffee-2608864.jpg │ │ │ │ └── index.md │ │ ├── page-convallis.md │ │ ├── showcase │ │ │ ├── _index.md │ │ │ ├── attach-page-resources │ │ │ │ ├── HelloWorld.xlsx │ │ │ │ ├── docs │ │ │ │ │ └── Hello World.docx │ │ │ │ ├── index.md │ │ │ │ ├── pdf │ │ │ │ │ ├── FooBar.pdf │ │ │ │ │ └── HelloWorld.pdf │ │ │ │ └── res │ │ │ │ │ ├── HelloWorld.md │ │ │ │ │ └── HelloWorld.xlsx │ │ │ ├── code-01.md │ │ │ ├── console-01.md │ │ │ ├── gallery-01.md │ │ │ ├── image-processing-with-hugo │ │ │ │ ├── img │ │ │ │ │ └── pixabay │ │ │ │ │ │ ├── humboldt-penguin-3064468_1920.jpg │ │ │ │ │ │ ├── penguin-1196947_1920.jpg │ │ │ │ │ │ ├── penguin-2104173_1920.jpg │ │ │ │ │ │ ├── penguin-2528615_1920.jpg │ │ │ │ │ │ ├── penguin-2753282_1920.jpg │ │ │ │ │ │ ├── penguin-935982_1920.jpg │ │ │ │ │ │ └── penguin-963703_1920.jpg │ │ │ │ └── index.md │ │ │ ├── liti-01.md │ │ │ ├── video-01.md │ │ │ ├── video-02.md │ │ │ └── video-03.md │ │ ├── these-logos.md │ │ └── these-pictures.md │ ├── resources │ │ └── images │ │ │ ├── clients │ │ │ └── pixabay.com │ │ │ │ ├── company-logo-1.png │ │ │ │ ├── company-logo-2.png │ │ │ │ ├── company-logo-3.png │ │ │ │ ├── company-logo-4.png │ │ │ │ ├── company-logo-5.png │ │ │ │ └── company-logo-6.png │ │ │ ├── favicons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ ├── mstile-144x144.png │ │ │ └── safari-pinned-tab.svg │ │ │ ├── index.md │ │ │ ├── jumbotrons │ │ │ └── pixabay.com │ │ │ │ └── seeberg-2825904_640.jpg │ │ │ ├── photocards │ │ │ └── pixabay.com │ │ │ │ ├── 01-photocard.jpg │ │ │ │ ├── 02-photocard.jpg │ │ │ │ ├── 03-photocard.jpg │ │ │ │ ├── 04-photocard.jpg │ │ │ │ ├── 05-photocard.png │ │ │ │ ├── 06-photocard.jpg │ │ │ │ ├── 07-photocard.jpg │ │ │ │ ├── 08-photocard.jpg │ │ │ │ └── 09-photocard.jpg │ │ │ ├── teaserpics │ │ │ ├── LICENSE.md │ │ │ ├── bitbucket.org │ │ │ │ └── pygments-main-logo.png │ │ │ ├── gohugo.io │ │ │ │ ├── golang-a-closer-look.png │ │ │ │ ├── hugo-dolor.png │ │ │ │ ├── hugo-ipsum.png │ │ │ │ └── hugo-lorem.png │ │ │ ├── pixabay.com │ │ │ │ ├── adventure-2528477_640.jpg │ │ │ │ ├── blue-2863550_640.png │ │ │ │ ├── coffee-2306471_640.jpg │ │ │ │ ├── coffee-2608864_640.jpg │ │ │ │ ├── coffee-2714970_640.jpg │ │ │ │ ├── coffee-beans-2258839_640.jpg │ │ │ │ ├── coffee-cup-2317201_640.jpg │ │ │ │ ├── contact-2860030_640.jpg │ │ │ │ ├── espresso-2892357_640.jpg │ │ │ │ ├── faq.png │ │ │ │ ├── girl-2696947_640.jpg │ │ │ │ ├── green-1738220_640.jpg │ │ │ │ ├── light-bulb-1002783_640.jpg │ │ │ │ ├── logo-google-1991840_640.png │ │ │ │ ├── matrix-2326147_640.jpg │ │ │ │ ├── mobile-phone-426559_640.jpg │ │ │ │ ├── monitor-1307227_640.jpg │ │ │ │ ├── organic-1280537_640.jpg │ │ │ │ ├── paint-2985569_640.jpg │ │ │ │ ├── paperclip-178126_640.jpg │ │ │ │ ├── parrot-2756488_640.jpg │ │ │ │ ├── particles-1373684_640.jpg │ │ │ │ ├── pencil-1067670_640.jpg │ │ │ │ ├── seeberg-2825904_640.jpg │ │ │ │ ├── still-life-2366084_640.jpg │ │ │ │ ├── tablet-313002_640.jpg │ │ │ │ └── wikimedia-commons-679587_640.png │ │ │ └── wikipedia.org │ │ │ │ ├── emacs-it-all-starts-here.png │ │ │ │ ├── emacs-it-all-starts-here.svg │ │ │ │ └── emacs-jokes.png │ │ │ └── testimonials │ │ │ └── pixabay.com │ │ │ ├── person-1.jpg │ │ │ ├── person-2.jpg │ │ │ ├── person-3.jpg │ │ │ ├── person-4.jpg │ │ │ ├── person-5.jpg │ │ │ └── person-6.jpg │ └── search │ │ └── index.md ├── data │ ├── clients │ │ ├── 01-client.yaml │ │ ├── 02-client.yaml │ │ ├── 03-client.yaml │ │ ├── 04-client.yaml │ │ ├── 05-client.yaml │ │ └── 06-client.yaml │ ├── features │ │ ├── 01-feature.yaml │ │ ├── 02-feature.yaml │ │ ├── 03-feature.yaml │ │ ├── 04-feature.yaml │ │ ├── 05-feature.yaml │ │ └── 06-feature.yaml │ ├── json │ │ └── docs.json │ ├── jumbotron │ │ ├── 01-jumbotron.yaml │ │ ├── 02-jumbotron.yaml │ │ ├── 03-jumbotron.yaml │ │ ├── 04-jumbotron.yaml │ │ ├── 05-jumbotron.yaml │ │ ├── 06-jumbotron.yaml │ │ ├── 07-jumbotron.yaml │ │ ├── 08-jumbotron.yaml │ │ ├── 09-jumbotron.yaml │ │ ├── 10-jumbotron.yaml │ │ ├── 11-jumbotron.yaml │ │ └── 12-jumbotron.yaml │ ├── photocards │ │ ├── 01-photocard.yaml │ │ ├── 02-photocard.yaml │ │ ├── 03-photocard.yaml │ │ ├── 04-photocard.yaml │ │ ├── 05-photocard.yaml │ │ ├── 06-photocard.yaml │ │ ├── 07-photocard.yaml │ │ ├── 08-photocard.yaml │ │ └── 09-photocard.yaml │ └── testimonials │ │ ├── 01-testimonial.yaml │ │ ├── 02-testimonial.yaml │ │ ├── 03-testimonial.yaml │ │ ├── 04-testimonial.yaml │ │ └── 05-testimonial.yaml ├── i18n │ └── .keepme ├── layouts │ ├── .keepme │ └── shortcodes │ │ └── chroma-lexers.html └── static │ ├── images │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mstile-144x144.png │ │ └── safari-pinned-tab.svg │ ├── photocards │ │ └── pixabay.com │ │ │ ├── 01-photocard-thumb.jpg │ │ │ ├── 01-photocard.jpg │ │ │ ├── 02-photocard-thumb.jpg │ │ │ ├── 02-photocard.jpg │ │ │ ├── 03-photocard-thumb.jpg │ │ │ ├── 03-photocard.jpg │ │ │ ├── 04-photocard-thumb.jpg │ │ │ ├── 04-photocard.jpg │ │ │ ├── 05-photocard-thumb.png │ │ │ ├── 05-photocard.png │ │ │ ├── 06-photocard-thumb.jpg │ │ │ ├── 06-photocard.jpg │ │ │ ├── 07-photocard-thumb.jpg │ │ │ ├── 07-photocard.jpg │ │ │ ├── 08-photocard-thumb.jpg │ │ │ ├── 08-photocard.jpg │ │ │ ├── 09-photocard-thumb.jpg │ │ │ └── 09-photocard.jpg │ └── teaserpics │ │ ├── gohugo.io │ │ ├── golang-a-closer-look-thumb.png │ │ ├── golang-a-closer-look.png │ │ ├── hugo-dolor-thumb.png │ │ ├── hugo-dolor.png │ │ ├── hugo-ipsum-thumb.png │ │ ├── hugo-ipsum.png │ │ ├── hugo-lorem-thumb.png │ │ └── hugo-lorem.png │ │ └── pixabay.com │ │ ├── coffee-2306471_640-thumb.jpg │ │ ├── coffee-2306471_640.jpg │ │ ├── coffee-2714970_640-thumb.jpg │ │ ├── coffee-2714970_640.jpg │ │ ├── coffee-beans-2258839_640-thumb.jpg │ │ └── coffee-beans-2258839_640.jpg │ ├── robots.txt │ └── src │ └── demo-hugo-server.sh ├── i18n ├── de.yaml └── en.yaml ├── images ├── complete.png ├── screenshot.png ├── snap_100.jpg ├── snap_110.jpg ├── snap_120.jpg ├── snap_130.jpg ├── snap_140.jpg ├── snap_150.jpg ├── snap_160.jpg ├── snap_170.jpg ├── snap_180.jpg ├── snap_190.jpg ├── snap_200.jpg ├── snap_210.jpg ├── snap_220.jpg ├── snap_230.jpg ├── snap_240.jpg ├── snap_242.jpg ├── snap_250.jpg ├── snap_260.jpg ├── snap_270.jpg ├── snap_280.jpg ├── snap_290.jpg ├── snap_300.jpg ├── snap_305.jpg ├── snap_306.jpg ├── snap_307.jpg ├── snap_310.jpg ├── snap_320.jpg ├── snap_330.jpg ├── snap_336.jpg ├── snap_338.jpg ├── snap_340.jpg ├── snap_342.jpg ├── snap_344.jpg ├── snap_350.jpg ├── snap_360.jpg ├── snap_370.jpg ├── snap_380.jpg ├── snap_500.jpg ├── snap_502.jpg ├── snap_504.jpg ├── snap_506.jpg ├── snap_510.jpg ├── snap_512.jpg ├── snap_514.jpg ├── snap_516.jpg ├── snap_518.jpg ├── snap_519.jpg ├── snap_520.jpg ├── snap_521.jpg ├── snap_523.jpg ├── snap_524.jpg ├── snap_525.jpg ├── tn.1.png ├── tn.2.png ├── tn.3.png ├── tn.4.png ├── tn.5.png ├── tn.6.png ├── tn.7.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── list.html │ ├── single.html │ ├── taxonomy.html │ └── terms.html ├── blog │ ├── list.html │ └── single.html ├── contact │ └── single.html ├── index.html ├── index.rss.xml ├── pages │ └── list.html ├── partials │ ├── _work │ │ ├── .editorconfig │ │ ├── orig.disqus.html │ │ ├── orig.template_embedded.go │ │ └── privacy.disqus.html │ ├── blog.disqus-button.html │ ├── blog.privacy.disqus.html │ ├── contact.form.html │ ├── contact.form.old.html │ ├── contact.map.html │ ├── debug.html │ ├── footer.bottom.html │ ├── footer.html │ ├── front.clients.carousel.html │ ├── front.features.html │ ├── front.jumbotrons.carousel.html │ ├── front.photocards.html │ ├── front.recent_posts.html │ ├── front.see_more.html │ ├── front.testimonials.carousel.html │ ├── head.cookieconsent.html │ ├── head.favicon.html │ ├── head.fonts.googleapis.html │ ├── head.fonts.local.html │ ├── head.fonts.local.style.html │ ├── head.google.gtags.html │ ├── head.html │ ├── head.meta.html │ ├── head.meta.og.html │ ├── head.meta.twitter.html │ ├── head.rss.html │ ├── head.stylesheets.html │ ├── header.marquee.html │ ├── header.nav.google.translate.html │ ├── header.nav.html │ ├── header.nav.large.theme_color_selector.html │ ├── header.nav.medium.theme_color_selector.html │ ├── main.blog.date.html │ ├── main.headline.nav-right.html │ ├── main.i18n.date.html │ ├── main.i18n.date.short.html │ ├── main.paginator.bar.html │ ├── main.related.html │ ├── main.taxonomy.current.html │ ├── main.taxonomy.full.bar.html │ ├── main.teaser_in_card.html │ ├── main.teaserpic.card.html │ ├── main.teaserpic.single.html │ ├── main.title.html │ ├── main.toc.single.html │ ├── page.nav.breadcrump.html │ ├── page.nav.cards.html │ ├── resource.image.html │ ├── scripts.bottom.html │ ├── scripts.top.html │ ├── search.google.gcse.html │ └── terms.list.html ├── robots.txt ├── search │ └── single.html └── shortcodes │ ├── _work │ ├── _pool.txt │ ├── res-all.html │ ├── res-by-prefix.html │ ├── res-by-type.html │ ├── res-gal.html │ ├── res-img-crd.html │ └── res-page.html │ ├── alert.html │ ├── asciicast.html │ ├── classify.html │ ├── csc.html │ ├── cscb.html │ ├── gp.html │ ├── hc.html │ ├── heg-figure.html │ ├── heg-gallery.html │ ├── heg-load-photoswipe.html │ ├── highlightfile.html │ ├── html-tag-classes.html │ ├── html-tag.html │ ├── html-tags.html │ ├── i18n.html │ ├── icon.html │ ├── kbd.html │ ├── liti.html │ ├── litt.html │ ├── litx.html │ ├── readfile.html │ ├── res-attach.html │ ├── res-debug.html │ ├── res-figure.html │ ├── res-gallery-load-photoswipe.html │ ├── res-gallery.html │ ├── term-in.html │ ├── term-out.html │ ├── toc.html │ ├── w3-alert-icon.html │ ├── w3-badge.html │ ├── w3-button-icon.html │ ├── w3-code.html │ ├── w3-codespan.html │ ├── w3-col-youtube-playlist.html │ ├── w3-col-youtube.html │ ├── w3-notice-icon.html │ ├── w3-quote.html │ └── w3-tag.html ├── static ├── css │ ├── custom.css │ ├── readme.txt │ ├── res-gallery.css │ ├── syntax.css │ ├── syntax │ │ ├── .generate.sh │ │ ├── syntax.abap.css │ │ ├── syntax.algol.css │ │ ├── syntax.algol_nu.css │ │ ├── syntax.api.css │ │ ├── syntax.arduino.css │ │ ├── syntax.autumn.css │ │ ├── syntax.borland.css │ │ ├── syntax.bw.css │ │ ├── syntax.colorful.css │ │ ├── syntax.default.css │ │ ├── syntax.dracula.css │ │ ├── syntax.emacs.css │ │ ├── syntax.friendly.css │ │ ├── syntax.fruity.css │ │ ├── syntax.github.css │ │ ├── syntax.igor.css │ │ ├── syntax.lovelace.css │ │ ├── syntax.manni.css │ │ ├── syntax.monokai.css │ │ ├── syntax.monokailight.css │ │ ├── syntax.murphy.css │ │ ├── syntax.native.css │ │ ├── syntax.paraiso-dark.css │ │ ├── syntax.paraiso-light.css │ │ ├── syntax.pastie.css │ │ ├── syntax.perldoc.css │ │ ├── syntax.pygments.css │ │ ├── syntax.rainbow_dash.css │ │ ├── syntax.rrt.css │ │ ├── syntax.solarized-dark.css │ │ ├── syntax.solarized-dark256.css │ │ ├── syntax.solarized-light.css │ │ ├── syntax.swapoff.css │ │ ├── syntax.tango.css │ │ ├── syntax.trac.css │ │ ├── syntax.vim.css │ │ ├── syntax.vs.css │ │ └── syntax.xcode.css │ ├── w3-theme-custom.css │ └── w3css-basic.css ├── images │ └── backgrounds │ │ └── see_more_background.jpg ├── js │ ├── custom.bottom.js │ ├── custom.top.js │ ├── front.js │ ├── front.min.js │ └── res-gallery-load-photoswipe.js └── vendor │ ├── OwlCarousel2 │ ├── LICENSE │ ├── README.md │ ├── assets │ │ ├── ajax-loader.gif │ │ ├── owl.carousel.css │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.css │ │ ├── owl.theme.default.min.css │ │ ├── owl.theme.green.css │ │ ├── owl.theme.green.min.css │ │ └── owl.video.play.png │ ├── owl.carousel.js │ └── owl.carousel.min.js │ ├── cookieconsent.com │ ├── cookie-consent.4.1.0.js │ └── cookie-consent.4.1.0.min .js │ ├── daneden.github.io │ └── animate.css │ │ └── 4.1.1 │ │ ├── animate.css │ │ └── animate.min.css │ ├── fontawesome │ └── 6.6.0 │ │ ├── LICENSE.txt │ │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-font-face.css │ │ ├── v4-font-face.min.css │ │ ├── v4-shims.css │ │ ├── v4-shims.min.css │ │ ├── v5-font-face.css │ │ └── v5-font-face.min.css │ │ ├── js │ │ ├── all.js │ │ ├── all.min.js │ │ ├── brands.js │ │ ├── brands.min.js │ │ ├── conflict-detection.js │ │ ├── conflict-detection.min.js │ │ ├── fontawesome.js │ │ ├── fontawesome.min.js │ │ ├── regular.js │ │ ├── regular.min.js │ │ ├── solid.js │ │ ├── solid.min.js │ │ ├── v4-shims.js │ │ └── v4-shims.min.js │ │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 │ ├── google │ └── fonts │ │ ├── css │ │ ├── _readme.txt │ │ ├── ubuntu-mono-v7-latin-700.css │ │ ├── ubuntu-mono-v7-latin-700italic.css │ │ ├── ubuntu-mono-v7-latin-italic.css │ │ ├── ubuntu-mono-v7-latin-regular.css │ │ ├── ubuntu-v11-latin-300.css │ │ ├── ubuntu-v11-latin-300italic.css │ │ ├── ubuntu-v11-latin-500.css │ │ ├── ubuntu-v11-latin-500italic.css │ │ ├── ubuntu-v11-latin-700.css │ │ ├── ubuntu-v11-latin-700italic.css │ │ ├── ubuntu-v11-latin-italic.css │ │ └── ubuntu-v11-latin-regular.css │ │ ├── ubuntu-mono-v7-latin-700.eot │ │ ├── ubuntu-mono-v7-latin-700.svg │ │ ├── ubuntu-mono-v7-latin-700.ttf │ │ ├── ubuntu-mono-v7-latin-700.woff │ │ ├── ubuntu-mono-v7-latin-700.woff2 │ │ ├── ubuntu-mono-v7-latin-700italic.eot │ │ ├── ubuntu-mono-v7-latin-700italic.svg │ │ ├── ubuntu-mono-v7-latin-700italic.ttf │ │ ├── ubuntu-mono-v7-latin-700italic.woff │ │ ├── ubuntu-mono-v7-latin-700italic.woff2 │ │ ├── ubuntu-mono-v7-latin-italic.eot │ │ ├── ubuntu-mono-v7-latin-italic.svg │ │ ├── ubuntu-mono-v7-latin-italic.ttf │ │ ├── ubuntu-mono-v7-latin-italic.woff │ │ ├── ubuntu-mono-v7-latin-italic.woff2 │ │ ├── ubuntu-mono-v7-latin-regular.eot │ │ ├── ubuntu-mono-v7-latin-regular.svg │ │ ├── ubuntu-mono-v7-latin-regular.ttf │ │ ├── ubuntu-mono-v7-latin-regular.woff │ │ ├── ubuntu-mono-v7-latin-regular.woff2 │ │ ├── ubuntu-v11-latin-300.eot │ │ ├── ubuntu-v11-latin-300.svg │ │ ├── ubuntu-v11-latin-300.ttf │ │ ├── ubuntu-v11-latin-300.woff │ │ ├── ubuntu-v11-latin-300.woff2 │ │ ├── ubuntu-v11-latin-300italic.eot │ │ ├── ubuntu-v11-latin-300italic.svg │ │ ├── ubuntu-v11-latin-300italic.ttf │ │ ├── ubuntu-v11-latin-300italic.woff │ │ ├── ubuntu-v11-latin-300italic.woff2 │ │ ├── ubuntu-v11-latin-500.eot │ │ ├── ubuntu-v11-latin-500.svg │ │ ├── ubuntu-v11-latin-500.ttf │ │ ├── ubuntu-v11-latin-500.woff │ │ ├── ubuntu-v11-latin-500.woff2 │ │ ├── ubuntu-v11-latin-500italic.eot │ │ ├── ubuntu-v11-latin-500italic.svg │ │ ├── ubuntu-v11-latin-500italic.ttf │ │ ├── ubuntu-v11-latin-500italic.woff │ │ ├── ubuntu-v11-latin-500italic.woff2 │ │ ├── ubuntu-v11-latin-700.eot │ │ ├── ubuntu-v11-latin-700.svg │ │ ├── ubuntu-v11-latin-700.ttf │ │ ├── ubuntu-v11-latin-700.woff │ │ ├── ubuntu-v11-latin-700.woff2 │ │ ├── ubuntu-v11-latin-700italic.eot │ │ ├── ubuntu-v11-latin-700italic.svg │ │ ├── ubuntu-v11-latin-700italic.ttf │ │ ├── ubuntu-v11-latin-700italic.woff │ │ ├── ubuntu-v11-latin-700italic.woff2 │ │ ├── ubuntu-v11-latin-italic.eot │ │ ├── ubuntu-v11-latin-italic.svg │ │ ├── ubuntu-v11-latin-italic.ttf │ │ ├── ubuntu-v11-latin-italic.woff │ │ ├── ubuntu-v11-latin-italic.woff2 │ │ ├── ubuntu-v11-latin-regular.eot │ │ ├── ubuntu-v11-latin-regular.svg │ │ ├── ubuntu-v11-latin-regular.ttf │ │ ├── ubuntu-v11-latin-regular.woff │ │ └── ubuntu-v11-latin-regular.woff2 │ ├── insites │ └── cookieconsent │ │ ├── cookieconsent.3.0.6.js │ │ ├── cookieconsent.3.0.6.min.css │ │ └── cookieconsent.3.0.6.min.js │ ├── jquery │ └── 3.7.1 │ │ ├── jquery-3.7.1.min.js │ │ └── jquery-3.7.1.slim.min.js │ ├── liwenyip │ └── hugo-easy-gallery │ │ ├── LICENCE.md │ │ ├── README.md │ │ ├── css │ │ ├── hugo-easy-gallery.css │ │ └── hugo-easy-gallery.min.css │ │ ├── js │ │ └── load-photoswipe.js │ │ └── layouts │ │ └── shortcodes │ │ ├── figure.html │ │ ├── gallery.html │ │ ├── load-photoswipe-theme.html │ │ └── load-photoswipe.html │ ├── photoswipe │ ├── default-skin │ │ ├── default-skin.css │ │ ├── default-skin.png │ │ ├── default-skin.svg │ │ └── preloader.gif │ ├── photoswipe-ui-default.js │ ├── photoswipe-ui-default.min.js │ ├── photoswipe-ui-theme.js │ ├── photoswipe.css │ ├── photoswipe.js │ └── photoswipe.min.js │ └── w3css │ └── 4 │ ├── 4.15 │ └── w3.css │ ├── color_of_the_year │ ├── w3-theme-color-of-year-2006-sand-dollar.css │ ├── w3-theme-color-of-year-2007-chili-pepper.css │ ├── w3-theme-color-of-year-2008-blue-izis.css │ ├── w3-theme-color-of-year-2009-mimosa.css │ ├── w3-theme-color-of-year-2010-turquise.css │ ├── w3-theme-color-of-year-2011-honeysucle.css │ ├── w3-theme-color-of-year-2012-tangerine-tango.css │ ├── w3-theme-color-of-year-2013-emerald.css │ ├── w3-theme-color-of-year-2014-radiand-orchid.css │ ├── w3-theme-color-of-year-2015-marsala.css │ ├── w3-theme-color-of-year-2016-airy-blue.css │ ├── w3-theme-color-of-year-2016-aurora-red.css │ ├── w3-theme-color-of-year-2016-bodacious.css │ ├── w3-theme-color-of-year-2016-buttercup.css │ ├── w3-theme-color-of-year-2016-duster-cedar.css │ ├── w3-theme-color-of-year-2016-fiesta.css │ ├── w3-theme-color-of-year-2016-green-flash.css │ ├── w3-theme-color-of-year-2016-iced-coffe.css │ ├── w3-theme-color-of-year-2016-lilac-grey.css │ ├── w3-theme-color-of-year-2016-limpet-shell.css │ ├── w3-theme-color-of-year-2016-lush-medow.css │ ├── w3-theme-color-of-year-2016-peach-echo.css │ ├── w3-theme-color-of-year-2016-potters-clay.css │ ├── w3-theme-color-of-year-2016-riverside.css │ ├── w3-theme-color-of-year-2016-rose-quarts.css │ ├── w3-theme-color-of-year-2016-serenity.css │ ├── w3-theme-color-of-year-2016-sharkskin.css │ ├── w3-theme-color-of-year-2016-snorkel-blue.css │ ├── w3-theme-color-of-year-2016-spicy-mustard.css │ ├── w3-theme-color-of-year-2016-warm-taupe.css │ ├── w3-theme-color-of-year-2017-autumn-maple.css │ ├── w3-theme-color-of-year-2017-ballet-slipper.css │ ├── w3-theme-color-of-year-2017-butterum.css │ ├── w3-theme-color-of-year-2017-flame.css │ ├── w3-theme-color-of-year-2017-golden-lime.css │ ├── w3-theme-color-of-year-2017-greenery.css │ ├── w3-theme-color-of-year-2017-grenadine.css │ ├── w3-theme-color-of-year-2017-hazelnut.css │ ├── w3-theme-color-of-year-2017-island-paradise.css │ ├── w3-theme-color-of-year-2017-kale.css │ ├── w3-theme-color-of-year-2017-lapis-blue.css │ ├── w3-theme-color-of-year-2017-marina.css │ ├── w3-theme-color-of-year-2017-navy-peony.css │ ├── w3-theme-color-of-year-2017-neutral-gray.css │ ├── w3-theme-color-of-year-2017-niagara.css │ ├── w3-theme-color-of-year-2017-pale-dogwood.css │ ├── w3-theme-color-of-year-2017-pink-yarrow.css │ ├── w3-theme-color-of-year-2017-primrose-yellow.css │ ├── w3-theme-color-of-year-2017-shaded-spruce.css │ ├── w3-theme-color-of-year-2017-tawny-port.css │ ├── w3-theme-color-of-year-2018-almond-buff.css │ ├── w3-theme-color-of-year-2018-almost-mauve.css │ ├── w3-theme-color-of-year-2018-arcadia.css │ ├── w3-theme-color-of-year-2018-blooming-dahlia.css │ ├── w3-theme-color-of-year-2018-ceylon-yellow.css │ ├── w3-theme-color-of-year-2018-cherry-tomato.css │ ├── w3-theme-color-of-year-2018-chili-oil.css │ ├── w3-theme-color-of-year-2018-coconut-milk.css │ ├── w3-theme-color-of-year-2018-crocus-petal.css │ ├── w3-theme-color-of-year-2018-emperador.css │ ├── w3-theme-color-of-year-2018-harbor-mist.css │ ├── w3-theme-color-of-year-2018-lime-punch.css │ ├── w3-theme-color-of-year-2018-limelight.css │ ├── w3-theme-color-of-year-2018-little-boy-blue.css │ ├── w3-theme-color-of-year-2018-martini-olive.css │ ├── w3-theme-color-of-year-2018-meadowlark.css │ ├── w3-theme-color-of-year-2018-meerkat.css │ ├── w3-theme-color-of-year-2018-nebulas-blue.css │ ├── w3-theme-color-of-year-2018-pink-lavender.css │ ├── w3-theme-color-of-year-2018-quetzal-green.css │ ├── w3-theme-color-of-year-2018-quiet-gray.css │ ├── w3-theme-color-of-year-2018-red-pear.css │ ├── w3-theme-color-of-year-2018-russet-orange.css │ ├── w3-theme-color-of-year-2018-sailor-blue.css │ ├── w3-theme-color-of-year-2018-sargasso-sea.css │ ├── w3-theme-color-of-year-2018-spring-crocus.css │ ├── w3-theme-color-of-year-2018-tofu.css │ ├── w3-theme-color-of-year-2018-ultra-violet.css │ ├── w3-theme-color-of-year-2018-valiant-poppy.css │ └── w3-theme-color-of-year-2018-warm-sand.css │ ├── w3-theme-amber.css │ ├── w3-theme-black.css │ ├── w3-theme-blue-grey.css │ ├── w3-theme-blue.css │ ├── w3-theme-brown.css │ ├── w3-theme-cyan.css │ ├── w3-theme-dark-grey.css │ ├── w3-theme-deep-orange.css │ ├── w3-theme-deep-purple.css │ ├── w3-theme-green.css │ ├── w3-theme-grey.css │ ├── w3-theme-indigo.css │ ├── w3-theme-khaki.css │ ├── w3-theme-light-blue.css │ ├── w3-theme-light-green.css │ ├── w3-theme-lime.css │ ├── w3-theme-orange.css │ ├── w3-theme-pink.css │ ├── w3-theme-purple.css │ ├── w3-theme-red.css │ ├── w3-theme-teal.css │ └── w3-theme-yellow.css └── theme.toml /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | # http://editorconfig.org/#download 3 | # http://editorconfig.org/#supported-properties 4 | 5 | root = true 6 | 7 | [*] 8 | end_of_line = lf 9 | insert_final_newline = true 10 | 11 | [*.{md,html,css,js,toml,yaml}] 12 | charset = utf-8 13 | indent_style = space 14 | indent_size = 2 15 | 16 | [*.{html,css,js,yaml,txt}] 17 | trim_trailing_whitespace = true 18 | 19 | [**.{min.css,min.js}] 20 | indent_style = ignore 21 | insert_final_newline = ignore 22 | 23 | [*.{md,toml}] 24 | trim_trailing_whitespace = false 25 | max_line_length = 80 26 | 27 | [*.py] 28 | indent_size = 4 29 | max_line_length = 80 30 | 31 | 32 | [Makefile] 33 | indent_style = tab 34 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | exampleSite/public 3 | exampleSite/resources/_gen/ 4 | work.txt 5 | -------------------------------------------------------------------------------- /.hugo_build.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/.hugo_build.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018, 2019 Bruno Grossniklaus 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /archetypes/blog.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .TranslationBaseName "-" " " | title }}" 3 | date: {{ .Date }} 4 | toc: false 5 | icon: 6 | teaserpic: 7 | description: 8 | tags: 9 | - 10 | categories: 11 | - 12 | --- 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /archetypes/pages.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 1 3 | title: "{{ replace .TranslationBaseName "-" " " | title }}" 4 | date: {{ .Date }} 5 | toc: false 6 | icon: 7 | teaserpic: 8 | description: 9 | tags: 10 | - 11 | categories: 12 | - 13 | --- 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | [module] 2 | [module.hugoVersion] 3 | extended = true 4 | min = "0.101.0" 5 | -------------------------------------------------------------------------------- /exampleSite/.gitignore: -------------------------------------------------------------------------------- 1 | .hugo_build.lock 2 | public/ 3 | resources/_gen/ 4 | themes 5 | .config.2.toml 6 | 7 | -------------------------------------------------------------------------------- /exampleSite/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2018 Bruno Grossniklaus 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the 7 | "Software"), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 20 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 21 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 22 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /exampleSite/archetypes/blog.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .TranslationBaseName "-" " " | title }}" 3 | date: {{ .Date }} 4 | resImgTeaser: 5 | #resImgCmd: 6 | #resImgOpt: 7 | icon: 8 | toc: false 9 | tags: 10 | - 11 | categories: 12 | - 13 | description: 14 | --- 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /exampleSite/archetypes/pages.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 1 3 | title: "{{ replace .TranslationBaseName "-" " " | title }}" 4 | date: {{ .Date }} 5 | resImgTeaser: 6 | #resImgCmd: 7 | #resImgOpt: 8 | icon: 9 | toc: false 10 | tags: 11 | - 12 | categories: 13 | - 14 | description: 15 | --- 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /exampleSite/bin/hugo-server-sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname $0)/.. 4 | # hugo server -w --themesDir ../../ --disableFastRender --navigateToChanged 5 | hugo server -e example -w --themesDir ../../ --disableFastRender --navigateToChanged 6 | -------------------------------------------------------------------------------- /exampleSite/config/_default/markup.toml: -------------------------------------------------------------------------------- 1 | defaultMarkdownHandler = "goldmark" 2 | [goldmark] 3 | [goldmark.renderer] 4 | unsafe = true 5 | -------------------------------------------------------------------------------- /exampleSite/config/example/markup.toml: -------------------------------------------------------------------------------- 1 | defaultMarkdownHandler = "goldmark" 2 | #defaultMarkdownHandler = "blackfriday" 3 | 4 | [blackFriday] 5 | angledQuotes = false 6 | footnoteAnchorPrefix = "" 7 | footnoteReturnLinkContents = "" 8 | fractions = true 9 | hrefTargetBlank = true 10 | latexDashes = true 11 | nofollowLinks = false 12 | noreferrerLinks = false 13 | plainIDAnchors = true 14 | skipHTML = false 15 | smartDashes = true 16 | smartypants = true 17 | smartypantsQuotesNBSP = false 18 | taskLists = true 19 | 20 | [goldmark] 21 | [goldmark.extensions] 22 | definitionList = true 23 | footnote = false 24 | linkify = true 25 | strikethrough = true 26 | table = true 27 | taskList = true 28 | typographer = false 29 | [goldmark.parser] 30 | attribute = true 31 | autoHeadingID = true 32 | [goldmark.renderer] 33 | hardWraps = false 34 | unsafe = true 35 | xHTML = false 36 | 37 | [highlight] 38 | codeFences = true 39 | hl_Lines = "" 40 | lineNoStart = 1 41 | lineNos = false 42 | lineNumbersInTable = true 43 | noClasses = true 44 | style = "monokai" 45 | tabWidth = 4 46 | 47 | [tableOfContents] 48 | endLevel = 6 49 | startLevel = 1 50 | -------------------------------------------------------------------------------- /exampleSite/content/.marquee.md: -------------------------------------------------------------------------------- 1 | At [info@example.com](mailto:info@example.com) vero eos et **accusam** 2 | et justo duo dolores et ea rebum. Stet clita *kasd gubergren*, no sea 3 | -------------------------------------------------------------------------------- /exampleSite/content/README.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /exampleSite/content/blog/.marquee.md: -------------------------------------------------------------------------------- 1 | At [info@example.com](mailto:info@example.com) vero eos et **accusam** 2 | et justo duo dolores et ea rebum. Stet clita *kasd gubergren*, no sea 3 | -------------------------------------------------------------------------------- /exampleSite/content/blog/2017/11/hugo-ipsum.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Hugo - ipsum" 3 | date: 2017-11-08T00:00:00+01:00 4 | tags: 5 | - web 6 | - hugo 7 | categories: 8 | - tools 9 | resImgTeaser: teaserpics/gohugo.io/hugo-ipsum.png 10 | teaserTruncateSummary: 300 11 | --- 12 | 13 | Lorem ipsum dolor sit amet 14 | ### Pellen Tesque Conse Ctetuer 15 | 16 | Consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. 17 | 18 | Cum sociis natoque penatibus et magnis dis parturient montes, nascetur 19 | ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, 20 | pretium quis, sem. 21 | 22 | Nullam dictum felis eu pede mollis pretium. 23 | 24 | 25 | 26 | Cum sociis natoque penatibus et magnis dis parturient montes, nascetur 27 | ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, 28 | pretium quis, sem. 29 | 30 | Nulla consequat massa quis enim. Donec pede justo, fringilla vel, 31 | aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, 32 | imperdiet a, venenatis vitae, justo. 33 | 34 | Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras 35 | dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend 36 | tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, 37 | enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a. 38 | 39 | -------------------------------------------------------------------------------- /exampleSite/content/blog/2018/05/hugo-amet/golang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/blog/2018/05/hugo-amet/golang.png -------------------------------------------------------------------------------- /exampleSite/content/blog/2018/05/hugo-amet/hugo-lorem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/blog/2018/05/hugo-amet/hugo-lorem.png -------------------------------------------------------------------------------- /exampleSite/content/blog/2018/05/hugo-amet/img/adventure-2528477_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/blog/2018/05/hugo-amet/img/adventure-2528477_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/blog/2018/05/hugo-amet/img/coffee-cup-2317201_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/blog/2018/05/hugo-amet/img/coffee-cup-2317201_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/blog/2018/05/hugo-amet/img/organic-1280537_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/blog/2018/05/hugo-amet/img/organic-1280537_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/contact/.marquee.md: -------------------------------------------------------------------------------- 1 | At [info@example.com](mailto:info@example.com) vero eos et **accusam** 2 | et justo duo dolores et ea rebum. Stet clita *kasd gubergren*, no sea 3 | -------------------------------------------------------------------------------- /exampleSite/content/contact/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contact" 3 | type: "contact" 4 | resImgTeaser: teaserpics/pixabay.com/contact-2860030_640.jpg 5 | icon: "far fa-address-card" 6 | --- 7 | 8 | # We are here to help you 9 | 10 | Pellentesque dapibus suscipit ligula. Donec posuere augue in quam. 11 | Etiam vel tortor sodales tellus ultricies commodo. Suspendisse 12 | potenti. Aenean in sem ac leo mollis blandit. Donec neque quam, 13 | dignissim in, mollis nec, sagittis eu, wisi. Phasellus lacus. Etiam 14 | laoreet quam sed arcu. Phasellus at dui in ligula mollis ultricies. 15 | Integer placerat tristique nisl. Praesent augue. 16 | 17 | Fusce commodo. Vestibulum convallis, lorem a tempus semper, dui dui 18 | euismod elit, vitae placerat urna tortor vitae lacus. Nullam libero 19 | mauris, consequat quis, varius et, dictum id, arcu. Mauris mollis 20 | tincidunt felis. Aliquam feugiat tellus ut neque. Nulla facilisis, 21 | risus a rhoncus fermentum, tellus tellus lacinia purus, et dictum nunc 22 | justo sit amet elit. 23 | 24 | Please feel free to contact us: 25 | -------------------------------------------------------------------------------- /exampleSite/content/faq/.marquee.md: -------------------------------------------------------------------------------- 1 | This is another **marquee**. Nullam eu ante vel est convallis dignissim. Fusce suscipit, wisi nec facilisis facilisis, est dui fermentum leo, quis tempor ligula erat quis odio. 2 | -------------------------------------------------------------------------------- /exampleSite/content/faq/img/pixabay.com/faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/faq/img/pixabay.com/faq.png -------------------------------------------------------------------------------- /exampleSite/content/faq/img/pixabay.com/light-bulb-1002783_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/faq/img/pixabay.com/light-bulb-1002783_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/faq/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/faq/teaser.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/.marquee.md: -------------------------------------------------------------------------------- 1 | At [info@example.com](mailto:info@example.com) vero eos et **accusam** 2 | et justo duo dolores et ea rebum. Stet clita *kasd gubergren*, no sea 3 | -------------------------------------------------------------------------------- /exampleSite/content/pages/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 1 3 | title: "My **Stuff** :house:" 4 | date: 2017-11-13T15:37:04+01:00 5 | icon: "fas fa-list" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/pages/folder10/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 110 3 | title: "Nunc rutrum turpis sed pede" 4 | date: "2017-06-08T01:06:13+02:00" 5 | resImgTeaser: teaserpics/pixabay.com/tablet-313002_640.jpg 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/pages/folder10/neque-nec.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Neque Nec" 3 | date: 2017-11-13T15:37:04+01:00 4 | description: > 5 | Aliquam erat volutpat. Nunc eleifend leo vitae magna. In id erat non 6 | orci commodo lobortis. Proin neque massa, cursus ut, gravida ut, 7 | lobortis eget, lacus. Sed diam. Praesent fermentum tempor tellus. 8 | Nullam tempus. 9 | keywords: 10 | - 11 | tags: 12 | - folder10 13 | - Malesuada 14 | categories: 15 | - Know-How 16 | resImgTeaser: teaserpics/pixabay.com/coffee-beans-2258839_640.jpg 17 | --- 18 | 19 | # Aliquam erat volutpat. 20 | 21 | Nunc eleifend leo vitae magna. 22 | * In id erat non orci commodo lobortis. 23 | * Proin neque massa, cursus ut, gravida ut, lobortis eget, lacus. 24 | * Sed diam. 25 | * Praesent fermentum tempor tellus. 26 | 27 | Nullam tempus. 28 | - Mauris ac felis vel velit tristique imperdiet. 29 | - Donec at pede. 30 | - Etiam vel neque nec dui dignissim bibendum. 31 | - Vivamus id enim. 32 | 33 | > Phasellus neque orci, porta a, aliquet quis, semper a, massa. 34 | > Phasellus purus. 35 | > Pellentesque tristique imperdiet tortor. 36 | > Nam euismod tellus id erat. 37 | -------------------------------------------------------------------------------- /exampleSite/content/pages/folder20/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 120 3 | title: "Suscipit ligula lorem" 4 | date: "2017-06-08T01:06:13+02:00" 5 | resImgTeaser: teaserpics/gohugo.io/golang-a-closer-look.png 6 | --- 7 | 8 | -------------------------------------------------------------------------------- /exampleSite/content/pages/folder20/folder21/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 21 3 | title: "Cum sociis natoque" 4 | date: "2017-06-08T01:06:13+02:00" 5 | resImgTeaser: teaserpics/gohugo.io/hugo-dolor.png 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/pages/folder20/folder21/folder211/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 211 3 | title: "Phasellus neque orci" 4 | date: "2017-06-08T01:06:13+02:00" 5 | resImgTeaser: teaserpics/gohugo.io/hugo-ipsum.png 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/pages/folder20/magna-orci-ultrices.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Magna Orci Ultrices" 3 | date: 2017-11-13T15:37:04+01:00 4 | description: > 5 | Cum sociis natoque penatibus et magnis dis parturient montes, nascetur 6 | ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, 7 | pretium quis, sem. 8 | tags: 9 | - folder20 10 | - Fermentum 11 | categories: 12 | - Know-How 13 | resImgTeaser: teaserpics/pixabay.com/girl-2696947_640.jpg 14 | --- 15 | 16 | Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean 17 | commodo ligula eget dolor. Aenean massa. 18 | 19 | Cum sociis natoque penatibus et magnis dis parturient montes, nascetur 20 | ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, 21 | pretium quis, sem. 22 | 23 | Nulla consequat massa quis enim. Donec pede justo, fringilla vel, 24 | aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, 25 | imperdiet a, venenatis vitae, justo. 26 | 27 | Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras 28 | dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend 29 | tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, 30 | enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat. 31 | -------------------------------------------------------------------------------- /exampleSite/content/pages/front/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 18 3 | title: "Frontpage Eye-Catcher" 4 | date: 2017-11-13T15:37:04+01:00 5 | icon: "fas fa-globe" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/pages/front/features/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 20 3 | title: "Features" 4 | date: 2017-11-22T13:53:53+01:00 5 | resImgTeaser: teaserpics/pixabay.com/blue-2863550_640.png 6 | tags: 7 | - front 8 | - Lorem 9 | categories: 10 | - eyecatcher 11 | --- 12 | -------------------------------------------------------------------------------- /exampleSite/content/pages/front/photocards/07.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 170 3 | title: "Etiam vel tortor sodales tellus ultricies commodo." 4 | date: 2017-11-14T14:47:02+01:00 5 | resImgTeaser: photocards/pixabay.com/07-photocard.jpg 6 | description: 7 | tags: 8 | - front 9 | - Lorem 10 | categories: 11 | - photocards 12 | --- 13 | 14 | 15 | Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diem 16 | nonummy nibh euismod tincidunt ut lacreet dolore magna aliguam erat 17 | volutpat. 18 | 19 | Ut wisis enim ad minim veniam, quis nostrud exerci tution 20 | ullam corper suscipit lobortis nisi ut aliquip ex ea commodo 21 | consequat. Duis te feugi facilisi. Duis autem dolor in hendrerit in 22 | vulputate velit esse molestie consequat. 23 | 24 | 25 | 26 | Vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan 27 | et iusto odio dignissim qui blandit praesent luptatum zzril delenit au 28 | gue duis dolore te feugat nulla facilisi. 29 | -------------------------------------------------------------------------------- /exampleSite/content/pages/front/photocards/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 20 3 | title: "Photocards" 4 | date: 2017-11-13T15:37:04+01:00 5 | resImgTeaser: teaserpics/pixabay.com/seeberg-2825904_640.jpg 6 | tags: 7 | - front 8 | - Lorem 9 | categories: 10 | - eyecatcher 11 | --- 12 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 15 3 | title: "About this Theme" 4 | date: "2017-11-22T07:42:26+01:00" 5 | icon: "fas fa-info fa-fw" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/hugoBasicExample/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 10 3 | title: "Hugo Basic Examples" 4 | date: "2017-11-22T07:42:26+01:00" 5 | icon: "fab fa-superpowers" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/hugoBasicExample/about.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "About Hugo" 3 | date = "2014-04-09" 4 | categories = [ 5 | "Hugo Basic Example" 6 | ] 7 | resImgTeaser = "teaserpics/gohugo.io/hugo-ipsum.png" 8 | +++ 9 | 10 | Hugo is a static site engine written in Go. 11 | 12 | 13 | It makes use of a variety of open source projects including: 14 | 15 | * [Cobra](https://github.com/spf13/cobra) 16 | * [Viper](https://github.com/spf13/viper) 17 | * [J Walter Weatherman](https://github.com/spf13/jWalterWeatherman) 18 | * [Cast](https://github.com/spf13/cast) 19 | 20 | Learn more and contribute on [GitHub](https://github.com/gohugoio). 21 | 22 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/images-taken-from/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 3 | title: "Images taken from..." 4 | date: 2017-12-08T08:44:43+01:00 5 | icon: "far fa-images fa-fw" 6 | resImgTeaser: teaserpics/pixabay.com/paint-2985569_640.jpg 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/images-taken-from/bitbucket-teaserpics.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 300 3 | title: "teaserpics (bitbucket.org)" 4 | date: 2017-12-08T08:57:29+01:00 5 | resImgTeaser: teaserpics/pixabay.com/pencil-1067670_640.jpg 6 | tags: 7 | - pictures 8 | - license 9 | categories: 10 | - legal 11 | description: "License: Redistribution and use in source and binary forms are permitted (conditions apply)" 12 | --- 13 | 14 | 15 | ## License 16 | * https://bitbucket.org/birkenfeld/pygments-main/src/7941677dc77d4f2bf0bbd6140ade85a9454b8b80/LICENSE 17 | 18 | Redistribution and use in source and binary forms, with or without 19 | modification, are permitted provided that the following conditions are 20 | met: 21 | 22 | * Redistributions of source code must retain the above copyright 23 | notice, this list of conditions and the following disclaimer. 24 | 25 | * Redistributions in binary form must reproduce the above copyright 26 | notice, this list of conditions and the following disclaimer in the 27 | documentation and/or other materials provided with the distribution. 28 | 29 | * https://bitbucket.org/birkenfeld/pygments-main/src/7941677dc77d4f2bf0bbd6140ade85a9454b8b80/doc/_static/logo_only.png 30 | * pygments logo created by Joel Unger. https://dribbble.com/joelunger 31 | 32 | 33 | ## Images 34 | {{< res-gallery-load-photoswipe >}} 35 | {{< res-gallery match="teaserpics/bitbucket.org/*" >}} 36 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/images-taken-from/pixabay-clients.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 140 3 | title: "clients (pixabay.com)" 4 | date: 2017-12-08T08:57:49+01:00 5 | resImgTeaser: teaserpics/pixabay.com/pencil-1067670_640.jpg 6 | tags: 7 | - pictures 8 | - license 9 | categories: 10 | - legal 11 | description: "License: Creative Commons CC0" 12 | --- 13 | 14 | 15 | ## License 16 | * https://pixabay.com/en/service/terms/ 17 | * License: Images and Videos on Pixabay are released under Creative Commons CC0. 18 | * https://creativecommons.org/publicdomain/zero/1.0/deed.en 19 | 20 | ## Images 21 | {{< res-gallery-load-photoswipe >}} 22 | {{< res-gallery match="clients/pixabay.com/*" >}} 23 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/images-taken-from/pixabay-jumbotrons.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 150 3 | title: "jumbotrons (pixabay.com)" 4 | date: 2017-12-08T08:57:49+01:00 5 | resImgTeaser: teaserpics/pixabay.com/pencil-1067670_640.jpg 6 | tags: 7 | - pictures 8 | - license 9 | categories: 10 | - legal 11 | description: "License: Creative Commons CC0" 12 | --- 13 | 14 | 15 | ## License 16 | * https://pixabay.com/en/service/terms/ 17 | * License: Images and Videos on Pixabay are released under Creative Commons CC0. 18 | * https://creativecommons.org/publicdomain/zero/1.0/deed.en 19 | 20 | ## Images 21 | {{< res-gallery-load-photoswipe >}} 22 | {{< res-gallery match="jumbotrons/pixabay.com/*" >}} 23 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/images-taken-from/pixabay-photocards.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 110 3 | title: "photocards (pixabay.com)" 4 | date: 2017-12-08T08:57:25+01:00 5 | resImgTeaser: teaserpics/pixabay.com/paint-2985569_640.jpg 6 | tags: 7 | - pictures 8 | - license 9 | categories: 10 | - legal 11 | description: "License: Creative Commons CC0" 12 | --- 13 | 14 | 15 | ## License 16 | * https://pixabay.com/en/service/terms/ 17 | * License: Images and Videos on Pixabay are released under Creative Commons CC0. 18 | * https://creativecommons.org/publicdomain/zero/1.0/deed.en 19 | 20 | ## Images 21 | {{< res-gallery-load-photoswipe >}} 22 | using shortcode: {{}} 23 | {{< res-gallery match="photocards/pixabay.com/*" caption-position="bottom" caption-effect="fade" hover-effect="slideup" >}} 24 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/images-taken-from/pixabay-teaserpics.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 100 3 | title: "teaserpics (pixabay.com)" 4 | date: 2017-12-08T08:57:29+01:00 5 | resImgTeaser: teaserpics/pixabay.com/pencil-1067670_640.jpg 6 | tags: 7 | - pictures 8 | - license 9 | categories: 10 | - legal 11 | description: "License: Creative Commons CC0" 12 | --- 13 | 14 | 15 | ## License 16 | * https://pixabay.com/en/service/terms/ 17 | * License: Images and Videos on Pixabay are released under Creative Commons CC0. 18 | * https://creativecommons.org/publicdomain/zero/1.0/deed.en 19 | 20 | ## Images 21 | {{< res-gallery-load-photoswipe >}} 22 | using shortcode: {{}} 23 | {{< res-gallery match="teaserpics/pixabay.com/*" >}} 24 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/images-taken-from/pixabay-testimonials.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 130 3 | title: "testimonials (pixabay.com)" 4 | date: 2017-12-08T08:57:29+01:00 5 | resImgTeaser: teaserpics/pixabay.com/pencil-1067670_640.jpg 6 | tags: 7 | - pictures 8 | - license 9 | categories: 10 | - legal 11 | description: "License: Creative Commons CC0" 12 | --- 13 | 14 | 15 | ## License 16 | * https://pixabay.com/en/service/terms/ 17 | * License: Images and Videos on Pixabay are released under Creative Commons CC0. 18 | * https://creativecommons.org/publicdomain/zero/1.0/deed.en 19 | 20 | ## Images 21 | {{< res-gallery-load-photoswipe >}} 22 | using shortcode: {{}} 23 | {{< res-gallery match="testimonials/pixabay.com/*" imgOpt="600x" thumbCmd="Resize" thumbOpt="200x" >}} 24 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/images-taken-from/wikipedia-teaserpics.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 210 3 | title: "teaserpics (wikipedia.org)" 4 | date: 2017-12-08T08:57:37+01:00 5 | resImgTeaser: teaserpics/pixabay.com/wikimedia-commons-679587_640.png 6 | tags: 7 | - pictures 8 | - license 9 | categories: 10 | - legal 11 | description: "License: Creative Commons Attribution-ShareAlike 3.0" 12 | --- 13 | 14 | ## License 15 | * Wikipedia:Text of Creative Commons Attribution-ShareAlike 3.0 Unported License 16 | * https://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License 17 | 18 | ## Images 19 | {{< res-gallery-load-photoswipe >}} 20 | {{< res-gallery match="teaserpics/wikipedia.org/*" >}} 21 | -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/page-shortcodes/img/pixabay.com/penguin-2104173_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/hugo-theme-w3css-basic/page-shortcodes/img/pixabay.com/penguin-2104173_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/page-shortcodes/pdf/FooBar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/hugo-theme-w3css-basic/page-shortcodes/pdf/FooBar.pdf -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/page-shortcodes/pdf/HelloWorld.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/hugo-theme-w3css-basic/page-shortcodes/pdf/HelloWorld.pdf -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/readme/img/pixabay.com/coffee-2608864.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/hugo-theme-w3css-basic/readme/img/pixabay.com/coffee-2608864.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/hugo-theme-w3css-basic/readme/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 10 3 | title: "This Theme Readme (github)" 4 | date: 2017-11-22T07:41:52+01:002018-04-12 16:31 5 | toc: true 6 | resImgTeaser: img/pixabay.com/coffee-2608864.jpg 7 | description: > 8 | This theme is built with W3.CSS and is highly configurable. More than **50** 9 | monochromatic color themes and **25** shortcodes. Support for image processing 10 | and attachments. 11 | categories: 12 | - This Theme 13 | --- 14 | 15 | This content is created using: 16 | {{< w3-code >}} 17 | {{}} 18 | {{< /w3-code >}} 19 | 20 | See more here: {{< liti "This Theme Shortcodes" >}} 21 | 22 | {{< readfile "content/README.md" "true" >}} 23 | 24 | 25 | -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 1 3 | title: "Showcase" 4 | date: 2018-01-05T20:18:10+01:00 5 | icon: "fas fa-eye" 6 | --- 7 | -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/attach-page-resources/HelloWorld.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/attach-page-resources/HelloWorld.xlsx -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/attach-page-resources/docs/Hello World.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/attach-page-resources/docs/Hello World.docx -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/attach-page-resources/pdf/FooBar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/attach-page-resources/pdf/FooBar.pdf -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/attach-page-resources/pdf/HelloWorld.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/attach-page-resources/pdf/HelloWorld.pdf -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/attach-page-resources/res/HelloWorld.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Hello World" 3 | date: 2018-04-09T13:56:21+02:00 4 | icon: 5 | description: Page Resource 6 | --- 7 | 8 | Nullam eu ante vel est convallis dignissim. Fusce suscipit, wisi nec facilisis 9 | facilisis, est dui fermentum leo, quis tempor ligula erat quis odio. Nunc porta 10 | vulputate tellus. Nunc rutrum turpis sed pede. Sed bibendum. Aliquam posuere. 11 | Nunc aliquet, augue nec adipiscing interdum, lacus tellus malesuada massa, quis 12 | varius mi purus non odio. 13 | 14 | Pellentesque condimentum, magna ut suscipit hendrerit, ipsum augue ornare nulla, 15 | non luctus diam neque sit amet urna. Curabitur vulputate vestibulum lorem. 16 | Fusce sagittis, libero non molestie mollis, magna orci ultrices dolor, at 17 | vulputate neque nulla lacinia eros. Sed id ligula quis est convallis tempor. 18 | Curabitur lacinia pulvinar nibh. Nam a sapien. 19 | 20 | -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/attach-page-resources/res/HelloWorld.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/attach-page-resources/res/HelloWorld.xlsx -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/console-01.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Add a Theme (asciinema)" 3 | date: 2018-01-05T20:38:50+01:00 4 | resImgTeaser: teaserpics/pixabay.com/05-photocard.png 5 | teaserpicNotOnPage: 6 | icon: "fas fa-video" 7 | tags: 8 | - Showcase 9 | categories: 10 | - This Theme 11 | --- 12 | 13 | See themes.gohugo.io for a list of themes to consider. 14 | 15 | 16 | This quickstart uses the beautiful Ananke theme. 17 | 18 | {{< asciicast WJM2LEZQs8VRhNeuZ5NiGPp9I >}} 19 | -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/humboldt-penguin-3064468_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/humboldt-penguin-3064468_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-1196947_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-1196947_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-2104173_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-2104173_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-2528615_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-2528615_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-2753282_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-2753282_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-935982_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-935982_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-963703_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/pages/showcase/image-processing-with-hugo/img/pixabay/penguin-963703_1920.jpg -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/liti-01.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Shortcode liti" 3 | date: 2018-01-18T20:01:00+01:00 4 | resImgTeaser: teaserpics/gohugo.io/hugo-dolor.png 5 | icon: "fas fa-search" 6 | description: "Shortcode **liti** *List by Title*" 7 | toc: true 8 | tags: 9 | - Showcase 10 | - shortcodes 11 | categories: 12 | - This Theme 13 | --- 14 | 15 | 16 | ## liti: List by Title 17 | 18 | {{< cscb c >}} 19 | {{}} 20 | {{< /cscb >}} 21 | 22 | Here is the page with the title {{< liti "About Hugo" >}} 23 | 24 | 25 | 26 | {{< cscb c >}} 27 | {{}} 28 | {{< /cscb >}} 29 | Pages with pixabay.com in it's title. 30 | 31 | Here they are: {{< liti "pixabay.com" "in" >}} 32 | 33 | 34 | 35 | ### All pages with hugo in it's title 36 | 37 | {{< cscb c >}} 38 | {{}} 39 | {{< /cscb >}} 40 | 41 | Here they are: 42 | 43 | {{< liti "hugo" "in" "i" "ul" >}} 44 | 45 | 46 | 47 | ### Really all pages with hugo in it's title 48 | 49 | {{< cscb c >}} 50 | {{}} 51 | {{< /cscb >}} 52 | 53 | Here they are: 54 | 55 | {{< liti "hugo" "in" "i" "ul" "all" ".Kind .RelPermalink" >}} 56 | 57 | -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/video-01.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Hugo - Static Site Generator" 3 | date: 2017-12-16T21:46:06+01:00 4 | icon: "fab fa-youtube" 5 | resImgTeaser: teaserpics/gohugo.io/hugo-ipsum.png 6 | teaserpicNotOnPage: 7 | description: "Giraffe Academy, Tutorial 1" 8 | tags: 9 | - Showcase 10 | categories: 11 | - This Theme 12 | --- 13 | 14 | {{< youtube qtIqKaDlqXo >}} 15 | 16 | -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/video-02.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Rob Pike - ‘Concurrency Is Not Parallelism’" 3 | date: 2018-01-05T20:50:11+01:00 4 | icon: "fab fa-vimeo" 5 | resImgTeaser: teaserpics/gohugo.io/golang-a-closer-look.png 6 | teaserpicNotOnPage: 7 | description: "Rob (@rob_pike) is a software pioneer. His influence is everywhere: Unix, Plan 9 OS, The Unix Programming Environment book, UTF-8, and most recently the Go programming language." 8 | #description: "Rob (@rob_pike) is a software pioneer." 9 | tags: 10 | - Showcase 11 | categories: 12 | - This Theme 13 | --- 14 | 15 | 16 | {{< vimeo 49718712 >}} 17 | -------------------------------------------------------------------------------- /exampleSite/content/pages/showcase/video-03.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Hugo - Static Site Generator" 3 | date: 2018-01-05T21:01:34+01:00 4 | icon: "fab fa-youtube" 5 | resImgTeaser: teaserpics/gohugo.io/hugo-dolor.png 6 | teaserpicNotOnPage: 7 | description: "Giraffe Academy, Tutorial 23. *(Demo page without tags or categories)*" 8 | --- 9 | 10 | {{< youtube 6U3emx29rKg >}} 11 | 12 | *(here is no taxonomy bar since this page has no assigned tags or categories)* 13 | -------------------------------------------------------------------------------- /exampleSite/content/resources/images/clients/pixabay.com/company-logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/clients/pixabay.com/company-logo-1.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/clients/pixabay.com/company-logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/clients/pixabay.com/company-logo-2.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/clients/pixabay.com/company-logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/clients/pixabay.com/company-logo-3.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/clients/pixabay.com/company-logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/clients/pixabay.com/company-logo-4.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/clients/pixabay.com/company-logo-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/clients/pixabay.com/company-logo-5.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/clients/pixabay.com/company-logo-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/clients/pixabay.com/company-logo-6.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/favicons/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /exampleSite/content/resources/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/favicons/favicon.ico -------------------------------------------------------------------------------- /exampleSite/content/resources/images/favicons/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "icons": [ 4 | ], 5 | "theme_color": "#ffffff", 6 | "background_color": "#ffffff", 7 | "display": "standalone" 8 | } 9 | -------------------------------------------------------------------------------- /exampleSite/content/resources/images/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/content/resources/images/jumbotrons/pixabay.com/seeberg-2825904_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/jumbotrons/pixabay.com/seeberg-2825904_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/photocards/pixabay.com/01-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/photocards/pixabay.com/01-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/photocards/pixabay.com/02-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/photocards/pixabay.com/02-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/photocards/pixabay.com/03-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/photocards/pixabay.com/03-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/photocards/pixabay.com/04-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/photocards/pixabay.com/04-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/photocards/pixabay.com/05-photocard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/photocards/pixabay.com/05-photocard.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/photocards/pixabay.com/06-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/photocards/pixabay.com/06-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/photocards/pixabay.com/07-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/photocards/pixabay.com/07-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/photocards/pixabay.com/08-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/photocards/pixabay.com/08-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/photocards/pixabay.com/09-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/photocards/pixabay.com/09-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/bitbucket.org/pygments-main-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/bitbucket.org/pygments-main-logo.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/gohugo.io/golang-a-closer-look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/gohugo.io/golang-a-closer-look.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/gohugo.io/hugo-dolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/gohugo.io/hugo-dolor.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/gohugo.io/hugo-ipsum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/gohugo.io/hugo-ipsum.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/gohugo.io/hugo-lorem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/gohugo.io/hugo-lorem.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/adventure-2528477_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/adventure-2528477_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/blue-2863550_640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/blue-2863550_640.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-2306471_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-2306471_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-2608864_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-2608864_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-2714970_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-2714970_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-beans-2258839_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-beans-2258839_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-cup-2317201_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/coffee-cup-2317201_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/contact-2860030_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/contact-2860030_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/espresso-2892357_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/espresso-2892357_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/faq.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/girl-2696947_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/girl-2696947_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/green-1738220_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/green-1738220_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/light-bulb-1002783_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/light-bulb-1002783_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/logo-google-1991840_640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/logo-google-1991840_640.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/matrix-2326147_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/matrix-2326147_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/mobile-phone-426559_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/mobile-phone-426559_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/monitor-1307227_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/monitor-1307227_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/organic-1280537_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/organic-1280537_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/paint-2985569_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/paint-2985569_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/paperclip-178126_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/paperclip-178126_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/parrot-2756488_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/parrot-2756488_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/particles-1373684_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/particles-1373684_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/pencil-1067670_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/pencil-1067670_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/seeberg-2825904_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/seeberg-2825904_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/still-life-2366084_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/still-life-2366084_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/tablet-313002_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/tablet-313002_640.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/pixabay.com/wikimedia-commons-679587_640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/pixabay.com/wikimedia-commons-679587_640.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/wikipedia.org/emacs-it-all-starts-here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/wikipedia.org/emacs-it-all-starts-here.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/teaserpics/wikipedia.org/emacs-jokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/teaserpics/wikipedia.org/emacs-jokes.png -------------------------------------------------------------------------------- /exampleSite/content/resources/images/testimonials/pixabay.com/person-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/testimonials/pixabay.com/person-1.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/testimonials/pixabay.com/person-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/testimonials/pixabay.com/person-2.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/testimonials/pixabay.com/person-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/testimonials/pixabay.com/person-3.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/testimonials/pixabay.com/person-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/testimonials/pixabay.com/person-4.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/testimonials/pixabay.com/person-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/testimonials/pixabay.com/person-5.jpg -------------------------------------------------------------------------------- /exampleSite/content/resources/images/testimonials/pixabay.com/person-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/content/resources/images/testimonials/pixabay.com/person-6.jpg -------------------------------------------------------------------------------- /exampleSite/content/search/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Search" 3 | type: "search" 4 | resImgTeaser: teaserpics/pixabay.com/logo-google-1991840_640.png 5 | icon: "fa fa-search" 6 | --- 7 | 8 | ## Google Custom Search 9 | 10 | -------------------------------------------------------------------------------- /exampleSite/data/clients/01-client.yaml: -------------------------------------------------------------------------------- 1 | weight: 1 2 | name: "customer-1" 3 | resImg: "clients/pixabay.com/company-logo-1.png" 4 | url: "http://www.example.com" 5 | -------------------------------------------------------------------------------- /exampleSite/data/clients/02-client.yaml: -------------------------------------------------------------------------------- 1 | weight: 2 2 | name: "customer-2" 3 | resImg: "clients/pixabay.com/company-logo-2.png" 4 | url: "http://www.example.com" 5 | -------------------------------------------------------------------------------- /exampleSite/data/clients/03-client.yaml: -------------------------------------------------------------------------------- 1 | weight: 3 2 | name: "customer-3" 3 | resImg: "clients/pixabay.com/company-logo-3.png" 4 | url: "http://www.example.com" 5 | -------------------------------------------------------------------------------- /exampleSite/data/clients/04-client.yaml: -------------------------------------------------------------------------------- 1 | weight: 4 2 | name: "customer-4" 3 | resImg: "clients/pixabay.com/company-logo-4.png" 4 | url: "http://www.example.com" 5 | -------------------------------------------------------------------------------- /exampleSite/data/clients/05-client.yaml: -------------------------------------------------------------------------------- 1 | weight: 5 2 | name: "customer-5" 3 | resImg: "clients/pixabay.com/company-logo-5.png" 4 | url: "http://www.example.com" 5 | -------------------------------------------------------------------------------- /exampleSite/data/clients/06-client.yaml: -------------------------------------------------------------------------------- 1 | weight: 6 2 | name: "customer-6" 3 | resImg: "clients/pixabay.com/company-logo-6.png" 4 | url: "http://www.example.com" 5 | -------------------------------------------------------------------------------- /exampleSite/data/features/01-feature.yaml: -------------------------------------------------------------------------------- 1 | weight: 1 2 | name: "Eleifend" 3 | icon: "fas fa-desktop" 4 | animated: "slideInLeft" 5 | url: pages/front/features/01 6 | description: | 7 | Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam 8 | nonumy eirmod tempor invidunt ut labore 9 | -------------------------------------------------------------------------------- /exampleSite/data/features/02-feature.yaml: -------------------------------------------------------------------------------- 1 | weight: 2 2 | name: "Vulputate" 3 | icon: "fas fa-print" 4 | animated: "rollIn" 5 | url: pages/front/features/02 6 | description: | 7 | Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse 8 | molestie consequat, vel illum dolore 9 | -------------------------------------------------------------------------------- /exampleSite/data/features/03-feature.yaml: -------------------------------------------------------------------------------- 1 | weight: 3 2 | name: "Consequat" 3 | icon: "fas fa-globe" 4 | animated: "slideInRight" 5 | url: pages/front/features/03 6 | description: | 7 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut 8 | labore et dolore magna aliquyam erat. 9 | -------------------------------------------------------------------------------- /exampleSite/data/features/04-feature.yaml: -------------------------------------------------------------------------------- 1 | weight: 4 2 | name: "Invidunt ut Labore" 3 | icon: "far fa-lightbulb" 4 | animated: "slideInLeft" 5 | url: pages/front/features/04 6 | description: | 7 | Nam liber tempor cum soluta nobis eleifend option congue nihil 8 | imperdiet doming id quod mazim placerat facer possim assum. Lorem 9 | ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy 10 | nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. 11 | -------------------------------------------------------------------------------- /exampleSite/data/features/05-feature.yaml: -------------------------------------------------------------------------------- 1 | weight: 5 2 | name: "Sadipscing Elitr" 3 | icon: "far fa-envelope" 4 | animated: "rollIn" 5 | url: pages/front/features/05 6 | description: | 7 | At vero eos et accusam et justo duo dolores et ea rebum. Stet clita 8 | kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit 9 | amet. 10 | -------------------------------------------------------------------------------- /exampleSite/data/features/06-feature.yaml: -------------------------------------------------------------------------------- 1 | weight: 6 2 | name: "Kasd Gubergren" 3 | icon: "fa fa-user" 4 | animated: "slideInRight" 5 | url: pages/front/features/06 6 | description: | 7 | Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper 8 | suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem 9 | vel eum iriure dolor in hendrerit in vulputate velit esse molestie 10 | consequat. 11 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/01-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 1 2 | title: "Welcome to W3.CSS Basic exampleSite" 3 | icon: 4 | description: | 5 | * Built with W3.CSS 6 | * Highly configurable 7 | * Change all colors in the blink of an eye 8 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/02-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 2 2 | title: W3.CSS Basic Theme 3 | resImg: 4 | icon: 5 | description: | 6 | * More than **100** predefined color themes 7 | * More than **25** shortcodes 8 | * Support for image processing and attachments 9 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/03-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 3 2 | title: Responsive design 3 | resImg: 4 | icon: 5 | description: | 6 | * Mobile first 7 | * 3 (medium, lage) or 1 (small) column layout 8 | * Small menu (first characters) on small screen (no collapse) 9 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/04-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 4 2 | title: Customizable landing page 3 | resImg: 4 | icon: 5 | description: | 6 | * Optional Marquee, Jumbotron 7 | * Optional Photocards, Features 8 | * Optional Recent Posts, See More 9 | * Optional Clients, Testimonials 10 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/05-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 5 2 | title: Optional Google Features 3 | resImg: 4 | icon: 5 | description: | 6 | * Fonts - either via api or via local files 7 | * Translate Widget 8 | * Global Site Tags with your GA_TRACKING_ID 9 | * Map on Contact page 10 | * Search page with google customizable search api 11 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/06-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 5 2 | title: Cool stuff included 3 | resImg: 4 | icon: 5 | description: | 6 | * Fontawesome version 5 7 | * Owl Carousel 8 | * Animate.css 9 | * [PhotoSwipe](http://photoswipe.com/) based [Gallery](https://it-gro.github.io/hugo-theme-w3css-basic.github.io/pages/showcase/gallery-01/) with image processing (resource) 10 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/07-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 7 2 | title: Contact page 3 | resImg: 4 | icon: 5 | description: | 6 | * Optional formspree.io 7 | * You may configure mail feedback link (privacy) 8 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/08-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 8 2 | title: Blog 3 | resImg: 4 | icon: 5 | description: | 6 | * Optional Disqus 7 | * Optional privacy protection (disable count) for Disqus 8 | * Lists for taxonomy and termy 9 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/09-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 9 2 | title: Quite unique 3 | resImg: 4 | icon: 5 | description: | 6 | * Alternative navigation (Top/Up/Down & pages on this level) 7 | * Optional fine grained tracing via embedded comments 8 | * Shorten menu entries on small displays 9 | * Custom Summary using truncate 10 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/10-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 10 2 | title: If privacy matters 3 | resImg: 4 | icon: 5 | description: | 6 | * Works with disabled javascript (using fallbacks) 7 | * Local fonts 8 | * Libs are local (no cdn) 9 | * Google stuff can be disabled 10 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/11-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 11 2 | title: This theme is for 3 | resImg: 4 | icon: 5 | description: | 6 | * Landing pages 7 | * Blogs 8 | * Pages in a directory structure with simple navigation 9 | * People who like monochromatic colors 10 | -------------------------------------------------------------------------------- /exampleSite/data/jumbotron/12-jumbotron.yaml: -------------------------------------------------------------------------------- 1 | weight: 12 2 | title: 3 | resImg: "photocards/pixabay.com/04-photocard.jpg" 4 | icon: 5 | description: | 6 | -------------------------------------------------------------------------------- /exampleSite/data/photocards/01-photocard.yaml: -------------------------------------------------------------------------------- 1 | weight: 1 2 | title: "Lorem ipsum" 3 | animated: "rollIn" 4 | resImg: "photocards/pixabay.com/01-photocard.jpg" 5 | url: pages/front/photocards/01 6 | description: | 7 | sed diam nonumy 8 | -------------------------------------------------------------------------------- /exampleSite/data/photocards/02-photocard.yaml: -------------------------------------------------------------------------------- 1 | weight: 2 2 | title: "Consetetur Sadipscing" 3 | animated: "rollIn" 4 | resImg: "photocards/pixabay.com/02-photocard.jpg" 5 | url: pages/front/photocards/02 6 | description: | 7 | * labore et dolore 8 | * magna aliquyam erat 9 | -------------------------------------------------------------------------------- /exampleSite/data/photocards/03-photocard.yaml: -------------------------------------------------------------------------------- 1 | weight: 3 2 | title: "Nonumy" 3 | animated: "rollIn" 4 | resImg: "photocards/pixabay.com/03-photocard.jpg" 5 | url: pages/front/photocards/03 6 | description: | 7 | * At vero eos et **accusam** 8 | * justo duo dolores et ea rebum 9 | -------------------------------------------------------------------------------- /exampleSite/data/photocards/04-photocard.yaml: -------------------------------------------------------------------------------- 1 | weight: 4 2 | title: "hendrerit in vulputate" 3 | animated: "rollIn" 4 | resImg: "photocards/pixabay.com/04-photocard.jpg" 5 | url: pages/front/photocards/04 6 | description: | 7 | augue duis dolore ? 8 | -------------------------------------------------------------------------------- /exampleSite/data/photocards/05-photocard.yaml: -------------------------------------------------------------------------------- 1 | weight: 5 2 | title: "Justo" 3 | animated: "rollIn" 4 | resImg: "photocards/pixabay.com/05-photocard.png" 5 | url: pages/front/photocards/05 6 | description: | 7 | * magna aliquyam 8 | * accusam aliquyam 9 | -------------------------------------------------------------------------------- /exampleSite/data/photocards/06-photocard.yaml: -------------------------------------------------------------------------------- 1 | weight: 6 2 | title: "Consetetur sadipscing" 3 | animated: "rollIn" 4 | resImg: "photocards/pixabay.com/06-photocard.jpg" 5 | url: pages/front/photocards/06 6 | description: | 7 | * dolores duo 8 | -------------------------------------------------------------------------------- /exampleSite/data/photocards/07-photocard.yaml: -------------------------------------------------------------------------------- 1 | weight: 7 2 | title: "magna aliquyam erat" 3 | animated: "rollIn" 4 | resImg: "photocards/pixabay.com/07-photocard.jpg" 5 | url: pages/front/photocards/07 6 | description: | 7 | Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum 8 | dolor 9 | -------------------------------------------------------------------------------- /exampleSite/data/photocards/08-photocard.yaml: -------------------------------------------------------------------------------- 1 | weight: 8 2 | title: "vulputate" 3 | animated: "rollIn" 4 | resImg: "photocards/pixabay.com/08-photocard.jpg" 5 | url: pages/front/photocards/09 6 | description: | 7 | luptatum 8 | -------------------------------------------------------------------------------- /exampleSite/data/photocards/09-photocard.yaml: -------------------------------------------------------------------------------- 1 | weight: 9 2 | title: "feugiat nulla facilisis" 3 | animated: "rollIn" 4 | resImg: "photocards/pixabay.com/09-photocard.jpg" 5 | url: pages/front/photocards/09 6 | description: | 7 | iusto odio dignissim 8 | -------------------------------------------------------------------------------- /exampleSite/data/testimonials/01-testimonial.yaml: -------------------------------------------------------------------------------- 1 | weight: 1 2 | name: "John Doe" 3 | position: "CEO, Takimata" 4 | resImg: "testimonials/pixabay.com/person-1.jpg" 5 | text: | 6 | Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper 7 | suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem 8 | vel eum iriure dolor in hendrerit in vulputate velit esse molestie 9 | consequat, vel illum dolore eu feugiat 10 | -------------------------------------------------------------------------------- /exampleSite/data/testimonials/02-testimonial.yaml: -------------------------------------------------------------------------------- 1 | weight: 2 2 | name: "Jane Doe" 3 | position: "CTO, Adipiscing" 4 | resImg: "testimonials/pixabay.com/person-2.jpg" 5 | text: | 6 | Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut 7 | labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos 8 | et accusam et justo duo dolores et ea rebum. Stet clita kasd 9 | gubergren, no sea takimata sanctus est Lorem ipsum dolor sit 10 | amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed 11 | diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam 12 | erat, sed diam voluptua. 13 | -------------------------------------------------------------------------------- /exampleSite/data/testimonials/03-testimonial.yaml: -------------------------------------------------------------------------------- 1 | weight: 3 2 | name: "Marie Doe" 3 | position: "CEO, Gubergren" 4 | resImg: "testimonials/pixabay.com/person-3.jpg" 5 | text: | 6 | Stet clita kasd gubergren, no sea takimata sanctus est 7 | Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur 8 | sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et 9 | dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam 10 | et justo duo dolores et ea rebum. 11 | -------------------------------------------------------------------------------- /exampleSite/data/testimonials/04-testimonial.yaml: -------------------------------------------------------------------------------- 1 | weight: 4 2 | name: "Sue Doe" 3 | position: "CMO, Accusam" 4 | resImg: "testimonials/pixabay.com/person-4.jpg" 5 | text: | 6 | Sed diam voluptua. At vero eos et accusam 7 | et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea 8 | takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit 9 | amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor 10 | invidunt ut labore et dolore magna aliquyam erat, sed diam 11 | voluptua. At vero eos et accusam. 12 | -------------------------------------------------------------------------------- /exampleSite/data/testimonials/05-testimonial.yaml: -------------------------------------------------------------------------------- 1 | weight: 5 2 | name: "Kathryn Wild " 3 | position: "Tiger, Zoo" 4 | resImg: "testimonials/pixabay.com/person-5.jpg" 5 | text: | 6 | Vel illum dolore eu feugiat nulla facilisis at 7 | vero eros et accumsan et iusto odio dignissim qui blandit praesent 8 | luptatum zzril delenit augue duis dolore te feugait nulla 9 | facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, 10 | sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna 11 | aliquam erat volutpat. 12 | -------------------------------------------------------------------------------- /exampleSite/i18n/.keepme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/i18n/.keepme -------------------------------------------------------------------------------- /exampleSite/layouts/.keepme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/layouts/.keepme -------------------------------------------------------------------------------- /exampleSite/layouts/shortcodes/chroma-lexers.html: -------------------------------------------------------------------------------- 1 | {{/* taken from https://github.com/gohugoio/hugoDocs/blob/master/layouts/shortcodes/chroma-lexers.html */}} 2 |
3 | {{- range .Site.Data.json.docs.chroma.lexers }} 4 |
{{ .Name }}
5 |
{{ delimit .Aliases ", " }}
6 | {{- end }} 7 |
8 | -------------------------------------------------------------------------------- /exampleSite/static/images/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /exampleSite/static/images/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /exampleSite/static/images/favicons/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /exampleSite/static/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /exampleSite/static/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /exampleSite/static/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/favicons/favicon.ico -------------------------------------------------------------------------------- /exampleSite/static/images/favicons/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "icons": [ 4 | ], 5 | "theme_color": "#ffffff", 6 | "background_color": "#ffffff", 7 | "display": "standalone" 8 | } 9 | -------------------------------------------------------------------------------- /exampleSite/static/images/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /exampleSite/static/images/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/01-photocard-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/01-photocard-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/01-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/01-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/02-photocard-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/02-photocard-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/02-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/02-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/03-photocard-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/03-photocard-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/03-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/03-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/04-photocard-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/04-photocard-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/04-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/04-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/05-photocard-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/05-photocard-thumb.png -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/05-photocard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/05-photocard.png -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/06-photocard-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/06-photocard-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/06-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/06-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/07-photocard-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/07-photocard-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/07-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/07-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/08-photocard-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/08-photocard-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/08-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/08-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/09-photocard-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/09-photocard-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/photocards/pixabay.com/09-photocard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/photocards/pixabay.com/09-photocard.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/gohugo.io/golang-a-closer-look-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/gohugo.io/golang-a-closer-look-thumb.png -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/gohugo.io/golang-a-closer-look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/gohugo.io/golang-a-closer-look.png -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/gohugo.io/hugo-dolor-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/gohugo.io/hugo-dolor-thumb.png -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/gohugo.io/hugo-dolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/gohugo.io/hugo-dolor.png -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/gohugo.io/hugo-ipsum-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/gohugo.io/hugo-ipsum-thumb.png -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/gohugo.io/hugo-ipsum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/gohugo.io/hugo-ipsum.png -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/gohugo.io/hugo-lorem-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/gohugo.io/hugo-lorem-thumb.png -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/gohugo.io/hugo-lorem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/gohugo.io/hugo-lorem.png -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/pixabay.com/coffee-2306471_640-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/pixabay.com/coffee-2306471_640-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/pixabay.com/coffee-2306471_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/pixabay.com/coffee-2306471_640.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/pixabay.com/coffee-2714970_640-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/pixabay.com/coffee-2714970_640-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/pixabay.com/coffee-2714970_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/pixabay.com/coffee-2714970_640.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/pixabay.com/coffee-beans-2258839_640-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/pixabay.com/coffee-beans-2258839_640-thumb.jpg -------------------------------------------------------------------------------- /exampleSite/static/images/teaserpics/pixabay.com/coffee-beans-2258839_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/exampleSite/static/images/teaserpics/pixabay.com/coffee-beans-2258839_640.jpg -------------------------------------------------------------------------------- /exampleSite/static/robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | # http://code.google.com/web/controlcrawlindex/ 3 | 4 | User-agent: * 5 | -------------------------------------------------------------------------------- /exampleSite/static/src/demo-hugo-server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd $(dirname $0)/.. 4 | # hugo server -w --themesDir ../../ --disableFastRender --navigateToChanged 5 | hugo server -e example -w --themesDir ../../ --disableFastRender --navigateToChanged 6 | -------------------------------------------------------------------------------- /images/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/complete.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/screenshot.png -------------------------------------------------------------------------------- /images/snap_100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_100.jpg -------------------------------------------------------------------------------- /images/snap_110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_110.jpg -------------------------------------------------------------------------------- /images/snap_120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_120.jpg -------------------------------------------------------------------------------- /images/snap_130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_130.jpg -------------------------------------------------------------------------------- /images/snap_140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_140.jpg -------------------------------------------------------------------------------- /images/snap_150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_150.jpg -------------------------------------------------------------------------------- /images/snap_160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_160.jpg -------------------------------------------------------------------------------- /images/snap_170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_170.jpg -------------------------------------------------------------------------------- /images/snap_180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_180.jpg -------------------------------------------------------------------------------- /images/snap_190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_190.jpg -------------------------------------------------------------------------------- /images/snap_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_200.jpg -------------------------------------------------------------------------------- /images/snap_210.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_210.jpg -------------------------------------------------------------------------------- /images/snap_220.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_220.jpg -------------------------------------------------------------------------------- /images/snap_230.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_230.jpg -------------------------------------------------------------------------------- /images/snap_240.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_240.jpg -------------------------------------------------------------------------------- /images/snap_242.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_242.jpg -------------------------------------------------------------------------------- /images/snap_250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_250.jpg -------------------------------------------------------------------------------- /images/snap_260.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_260.jpg -------------------------------------------------------------------------------- /images/snap_270.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_270.jpg -------------------------------------------------------------------------------- /images/snap_280.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_280.jpg -------------------------------------------------------------------------------- /images/snap_290.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_290.jpg -------------------------------------------------------------------------------- /images/snap_300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_300.jpg -------------------------------------------------------------------------------- /images/snap_305.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_305.jpg -------------------------------------------------------------------------------- /images/snap_306.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_306.jpg -------------------------------------------------------------------------------- /images/snap_307.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_307.jpg -------------------------------------------------------------------------------- /images/snap_310.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_310.jpg -------------------------------------------------------------------------------- /images/snap_320.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_320.jpg -------------------------------------------------------------------------------- /images/snap_330.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_330.jpg -------------------------------------------------------------------------------- /images/snap_336.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_336.jpg -------------------------------------------------------------------------------- /images/snap_338.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_338.jpg -------------------------------------------------------------------------------- /images/snap_340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_340.jpg -------------------------------------------------------------------------------- /images/snap_342.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_342.jpg -------------------------------------------------------------------------------- /images/snap_344.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_344.jpg -------------------------------------------------------------------------------- /images/snap_350.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_350.jpg -------------------------------------------------------------------------------- /images/snap_360.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_360.jpg -------------------------------------------------------------------------------- /images/snap_370.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_370.jpg -------------------------------------------------------------------------------- /images/snap_380.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_380.jpg -------------------------------------------------------------------------------- /images/snap_500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_500.jpg -------------------------------------------------------------------------------- /images/snap_502.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_502.jpg -------------------------------------------------------------------------------- /images/snap_504.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_504.jpg -------------------------------------------------------------------------------- /images/snap_506.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_506.jpg -------------------------------------------------------------------------------- /images/snap_510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_510.jpg -------------------------------------------------------------------------------- /images/snap_512.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_512.jpg -------------------------------------------------------------------------------- /images/snap_514.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_514.jpg -------------------------------------------------------------------------------- /images/snap_516.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_516.jpg -------------------------------------------------------------------------------- /images/snap_518.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_518.jpg -------------------------------------------------------------------------------- /images/snap_519.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_519.jpg -------------------------------------------------------------------------------- /images/snap_520.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_520.jpg -------------------------------------------------------------------------------- /images/snap_521.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_521.jpg -------------------------------------------------------------------------------- /images/snap_523.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_523.jpg -------------------------------------------------------------------------------- /images/snap_524.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_524.jpg -------------------------------------------------------------------------------- /images/snap_525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/snap_525.jpg -------------------------------------------------------------------------------- /images/tn.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/tn.1.png -------------------------------------------------------------------------------- /images/tn.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/tn.2.png -------------------------------------------------------------------------------- /images/tn.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/tn.3.png -------------------------------------------------------------------------------- /images/tn.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/tn.4.png -------------------------------------------------------------------------------- /images/tn.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/tn.5.png -------------------------------------------------------------------------------- /images/tn.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/tn.6.png -------------------------------------------------------------------------------- /images/tn.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/tn.7.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define `title` }} 2 | {{ end }} 3 | 4 | {{ define `headline` }} 5 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 6 | {{- `` | safeHTML }} 7 | {{- end}} 8 | {{ end }} 9 | 10 | 11 | {{ define `main` }} 12 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 13 | {{- `` | safeHTML }} 14 | {{- end}} 15 |

We are sorry - this page is not here

16 |
17 | Go to Homepage 18 |
19 | {{ end }} 20 | 21 | 22 | {{ define `footer` }} 23 | {{ end }} 24 | -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{- `` | safeHTML }} 3 | {{- end}} 4 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define `headline` }} 2 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 3 | {{- `` | safeHTML }} 4 | {{- end}} 5 | 6 |

7 | {{- if eq .Data.Singular `category` }}{{ default `Category` (i18n `categoryTitle`) }}: {{ end }} 8 | {{- if eq .Data.Singular `tag` }}{{ default `Tag` (i18n `tagTitle`) }}: {{ end }} 9 | {{- .Title | markdownify | emojify }} 10 | 11 | {{- partial `main.headline.nav-right.html` . -}} 12 | 13 |

14 | 15 | {{ end }} 16 | -------------------------------------------------------------------------------- /layouts/_default/terms.html: -------------------------------------------------------------------------------- 1 | {{- define `headline` }} 2 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 3 | {{ `` | safeHTML }} 4 | {{- end}} 5 |

6 | {{ if eq .Data.Singular `category` }}{{ default `Categories` (i18n `categoriesTitle`) }}{{ end }} 7 | {{ if eq .Data.Singular `tag` }}{{ default `Tags` (i18n `tagsTitle`) }}{{ end }} 8 | 9 | {{- partial `main.headline.nav-right.html` . -}} 10 | 11 |

12 | {{- end }} 13 | 14 | {{- define `main` }} 15 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 16 | {{ `` | safeHTML }} 17 | {{- end}} 18 | {{ partial `terms.list.html` . }} 19 | {{- end }} 20 | -------------------------------------------------------------------------------- /layouts/blog/single.html: -------------------------------------------------------------------------------- 1 | {{ define `blog-disqus` }} 2 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 3 | {{- `` | safeHTML }} 4 | {{- end}} 5 | {{ partial `blog.disqus-button.html` . }} 6 | {{/* partial `blog.privacy.disqus.html` . */}} 7 | {{/* template "_internal/disqus.html" . */}} 8 | {{ end }} 9 | -------------------------------------------------------------------------------- /layouts/contact/single.html: -------------------------------------------------------------------------------- 1 | {{ define `contactform` }} 2 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 3 | {{- `` | safeHTML }} 4 | {{- end}} 5 | {{ partial `contact.form.html` . }} 6 | {{/* partial `contact.map.html` . */}} 7 | {{ end }} 8 | -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 4 | {{ `` | safeHTML }} 5 | {{- end}} 6 | {{ partial `head.html` . }} 7 | 8 | 9 |
10 |
11 | {{ partial `header.marquee.html` . }} 12 | {{ partial `header.nav.html` . }} 13 |
14 | {{ partial `front.jumbotrons.carousel.html` . }} 15 | {{ partial `front.photocards.html` . }} 16 | {{ partial `front.features.html` . }} 17 | {{ partial `front.recent_posts.html` . }} 18 | {{ partial `front.see_more.html` . }} 19 | {{ partial `front.clients.carousel.html` . }} 20 | {{ partial `front.testimonials.carousel.html` . }} 21 | 22 | {{ partial `footer.html` . }} 23 | {{ partial `footer.bottom.html` . }} 24 | {{ partial `scripts.bottom.html` . }} 25 |
26 | 27 | {{- partial `debug.html` . -}} 28 | 29 | -------------------------------------------------------------------------------- /layouts/partials/_work/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | # http://editorconfig.org/#download 3 | # http://editorconfig.org/#supported-properties 4 | 5 | root = true 6 | 7 | [*] 8 | end_of_line = lf 9 | 10 | [*.{go,html] 11 | charset = utf-8 12 | indent_style = space 13 | indent_size = 4 14 | 15 | trim_trailing_whitespace = true 16 | -------------------------------------------------------------------------------- /layouts/partials/_work/orig.disqus.html: -------------------------------------------------------------------------------- 1 | {{ if .Site.DisqusShortname }}
2 | 19 | 20 | comments powered by Disqus{{end}} 21 | -------------------------------------------------------------------------------- /layouts/partials/_work/orig.template_embedded.go: -------------------------------------------------------------------------------- 1 | t.addInternalTemplate("", "disqus.html", `{{ if .Site.DisqusShortname }}
2 | 19 | 20 | comments powered by Disqus{{end}}`) 21 | -------------------------------------------------------------------------------- /layouts/partials/debug.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{- if isset $.Site.Params (lower `debug` ) }} 5 | {{- if $.Site.Params.debug }} 6 |
7 |

.Permalink

8 | {{- printf `%#v` .Permalink }} 9 | 10 |

.

11 | {{- printf `%#v` . }} 12 | 13 |

.Params

14 | 15 | {{- range $key, $value := .Params }} 16 | {{ printf `` $key $value | safeHTML }} 17 | {{- end }} 18 |
%#v%#v
19 | 20 |

$.Site

21 | {{- printf `%#v` $.Site }} 22 | 23 |

.Data.Pages

24 | 25 | {{ range .Data.Pages }} 26 | {{/* The context, ".", is now each one of the pages as it goes through the loop */}} 27 | {{ printf `%#v` . }}

28 | {{- end }} 29 | 30 | {{- end }} 31 | {{- end }} 32 | -------------------------------------------------------------------------------- /layouts/partials/footer.bottom.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 |
5 | 6 |
7 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 8 | {{ `` | safeHTML }} 9 | {{- end}} 10 | {{ if $.Site.Params.bottomLeft }} 11 | {{- $.Site.Params.bottomLeft | markdownify }} 12 | {{- end }} 13 |
14 | 15 |
16 |
17 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 18 | {{ `` | safeHTML }} 19 | {{- end}} 20 | {{ if $.Site.Params.bottomRight }} 21 | {{- replaceRE `\[Hugo\]` (printf `[Hugo %s]` hugo.Version) $.Site.Params.bottomRight | markdownify }} 22 | {{- end }} 23 |
24 |
25 | 26 |
27 | -------------------------------------------------------------------------------- /layouts/partials/front.see_more.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{- if isset $.Site.Params (lower `seemore` ) }} 5 | {{- if $.Site.Params.seeMore.enable }} 6 |
7 |
8 |
9 |
10 |
11 |
{{ $.Site.Params.seeMore.title }}
12 |
{{ $.Site.Params.seeMore.subtitle }}
13 |
{{ $.Site.Params.seeMore.linkText }}
14 |
15 |
16 |
17 |
18 | {{- end }} {{/* if gt */}} 19 | {{- end }} {{/* if *.enable */}} 20 | -------------------------------------------------------------------------------- /layouts/partials/head.google.gtags.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{- if and $.Site.Params.enableGoogleGtag $.Site.Config.Services.GoogleAnalytics.ID }} 5 | {{- /* */}} 6 | 20 | 21 | 30 | 31 | {{- end -}} 32 | -------------------------------------------------------------------------------- /layouts/partials/head.meta.og.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{ with .Site.Title }} {{end}} 5 | {{ with .Title }} {{end}} 6 | {{ with .Description }} {{end}} 7 | {{ with .Permalink }} {{end}} 8 | {{- $myFaviconPath := default `/images/favicons` $.Site.Params.favicon.path }} 9 | {{- $myOgImage := "apple-touch-icon.png" }} 10 | {{ with $myOgImage }} {{end}} 11 | -------------------------------------------------------------------------------- /layouts/partials/head.meta.twitter.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{ with .Title }} {{end}} 5 | {{ with .Description }} {{end}} 6 | {{- $myFaviconPath := default `/images/favicons` $.Site.Params.favicon.path }} 7 | {{- $myOgImage := "apple-touch-icon.png" }} 8 | {{ with $myOgImage }} {{end}} 9 | -------------------------------------------------------------------------------- /layouts/partials/head.rss.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{ with .OutputFormats.Get "rss" -}} 5 | {{ printf `` .Rel .MediaType.Type .Permalink site.Title | safeHTML }} 6 | {{- end -}} 7 | -------------------------------------------------------------------------------- /layouts/partials/header.marquee.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{- if $.Site.Params.marquee.enable }} 5 | {{- $myPath := replaceRE (printf "^%s" .Site.BaseURL) "" .Permalink }} 6 | {{- $myMarquee := printf "%s/%s" $myPath $.Site.Params.marquee.file }} 7 | {{- if fileExists $myMarquee }} 8 |
9 |
10 |
11 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 12 | {{- /* OBSOLETE: `` | safeHTML */}} 13 | {{ `` | safeHTML }} 14 | {{- end}} 15 |
16 | {{- /* OBSOLETE: $.Site.Params.marquee.marquee */}} 17 | {{- readFile $myMarquee | markdownify }} 18 |
19 |
20 |
21 |
22 | {{- end }} {{- /* if fileExists */}} 23 | {{- end }} {{- /* if *.enable */}} 24 | -------------------------------------------------------------------------------- /layouts/partials/main.blog.date.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{- if eq .Type `blog` }} 5 |
 {{- partial `main.i18n.date.html` . -}}
6 | {{- end }} 7 | -------------------------------------------------------------------------------- /layouts/partials/main.headline.nav-right.html: -------------------------------------------------------------------------------- 1 | {{- if isset $.Site.Params (lower `options` ) -}} 2 | {{- if $.Site.Params.options.showNavUp -}} 3 | {{- if and (ne .Type `blog`) (.IsPage) -}} 4 | 5 | {{- end -}} 6 | {{- end -}} 7 | {{- end -}} 8 | {{- if isset $.Site.Params (lower `options` ) -}} 9 | {{- if $.Site.Params.options.jsHistoryNav -}} 10 | 11 | {{- if $.Site.Params.options.jsHistoryNavForward -}} 12 | {{- "" -}} 13 | 14 | {{- end -}} 15 | {{- end -}} 16 | {{- end -}} 17 | -------------------------------------------------------------------------------- /layouts/partials/main.i18n.date.html: -------------------------------------------------------------------------------- 1 | {{- /* .Date.Format $.Site.Params.date_format */}} 2 | {{- .Date.Day}}. {{default .Date.Month (i18n .Date.Month)}} {{.Date.Year -}} 3 | -------------------------------------------------------------------------------- /layouts/partials/main.i18n.date.short.html: -------------------------------------------------------------------------------- 1 | {{- /* .Date.Format $.Site.Params.date_format */}} 2 | {{- .Date.Day}}. {{substr (default .Date.Month (i18n .Date.Month)) 0 3}} {{.Date.Year -}} 3 | -------------------------------------------------------------------------------- /layouts/partials/main.paginator.bar.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | 5 |
6 |
7 | {{- if .Paginator.HasPrev }} 8 | ← {{ default `prev` (i18n `newer`) }} 9 | {{- else }} 10 | ← {{ default `prev` (i18n `newer`) }} 11 | {{- end }} 12 | 13 | {{- if .Paginator.HasNext }} 14 | {{ default `next` (i18n `older`) }} → 15 | {{- else }} 16 | {{ default `next` (i18n `older`) }} → 17 | {{- end }} 18 |
19 |
20 | -------------------------------------------------------------------------------- /layouts/partials/main.related.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | 5 | {{- if isset $.Site.Params (lower `related` ) }} 6 | {{- if $.Site.Params.related.enable }} 7 | 8 | {{ $related := .Site.RegularPages.Related . | first ( default 5 $.Site.Params.related.limitTo ) }} 9 | {{ with $related }} 10 |
11 |
12 |

{{default "See Also" (i18n "seeAlso")}}

13 | 18 |
19 |
20 | {{- end }} {{/* with $related */}} 21 | 22 | {{- end }} {{/* $.Site.Params.related.enable */}} 23 | {{- end }} {{/* if isset */}} 24 | -------------------------------------------------------------------------------- /layouts/partials/main.teaserpic.card.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | 5 | {{- $myImgClass := "w3-image w3-left w3-round w3-hover-opacity " }} 6 | {{- $myImgStyle := "max-width:150px; max-height:150px; width: auto; height: auto; margin: 0px 8px 16px 0px; " }} 7 | {{- $myImg := .Param `resImgTeaser` }} {{/* case insensitive */}} 8 | {{- $myImgCmd := .Param `resImgTeaserCmd` | default `Resize` }} 9 | {{- $myImgOpt := .Param `resImgTeaserOpt` | default `150x` }} 10 | {{- $myImgCmd := .Param `resImgTeaserInCardCmd` | default $myImgCmd }} 11 | {{- $myImgOpt := .Param `resImgTeaserInCardOpt` | default $myImgOpt }} 12 | {{ partial `resource.image.html` (dict `page` . `class` $myImgClass `style` $myImgStyle `img` $myImg `cmd` $myImgCmd `opt` $myImgOpt ) }} 13 | 14 | {{- if .Param `youtubeThumbnail` }} 15 | {{- $myYoutubeThumbnail := .Param `youtubeThumbnail`}} 16 | 21 | {{- end }} 22 | -------------------------------------------------------------------------------- /layouts/partials/main.teaserpic.single.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | 5 | {{- if not (isset .Params (lower `teaserpicNotOnPage`) ) }} 6 | {{- $myImgClass := "w3-hide-small w3-image w3-right w3-round " }} 7 | {{- $myImgStyle := "max-width:400px; max-height:200px; width: auto; height: auto; margin: 8px 0px 8px 8px; " }} 8 | {{- $myImg := .Param `resImgTeaser` }} {{/* case insensitive */}} 9 | {{- $myImgCmd := .Param `resImgTeaserCmd` | default `Resize` }} 10 | {{- $myImgOpt := .Param `resImgTeaserOpt` | default `300x` }} 11 | {{ partial `resource.image.html` (dict `page` . `class` $myImgClass `style` $myImgStyle `img` $myImg `cmd` $myImgCmd `opt` $myImgOpt ) }} 12 | {{- end }} 13 | -------------------------------------------------------------------------------- /layouts/partials/main.title.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 |

5 | {{- if .Params.icon }} 6 | 7 | {{- end }} 8 | {{ .Title | markdownify | emojify }} 9 |

10 | -------------------------------------------------------------------------------- /layouts/partials/main.toc.single.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{- if .Params.toc }} 5 | {{ .TableOfContents }} 6 | {{- end }} 7 | -------------------------------------------------------------------------------- /layouts/partials/scripts.top.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | {{- if .IsHome }} 5 | {{- end }} 6 | {{- $assetBusting := not .Site.Params.disableJSAssetsBusting }} 7 | 8 | {{- range .Site.Params.custom_js_top }} 9 | 10 | {{- end }} 11 | -------------------------------------------------------------------------------- /layouts/partials/terms.list.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 2 | {{ `` | safeHTML }} 3 | {{- end}} 4 | 15 | -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- 1 | # www.robotstxt.org/ 2 | # http://code.google.com/web/controlcrawlindex/ 3 | 4 | User-agent: * 5 | Disallow: {{ if (findRE `\b(gitlab.io|github.io)\b` $.Site.BaseURL) }}/{{ end }} 6 | -------------------------------------------------------------------------------- /layouts/search/single.html: -------------------------------------------------------------------------------- 1 | {{ define `search` }} 2 | {{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }} 3 | {{- `` | safeHTML }} 4 | {{- end}} 5 | {{ partial `search.google.gcse.html` . }} 6 | {{ end }} 7 | -------------------------------------------------------------------------------- /layouts/shortcodes/_work/_pool.txt: -------------------------------------------------------------------------------- 1 | {{ range .Resources }} 2 |
  • {{ .ResourceType | title }}
  • 3 | {{ end }} 4 | 5 | {{ with .Resources.ByType "image" }} 6 |
  • {{ .ResourceType | title }}
  • 7 | {{ end }} 8 | 9 | {{/* 10 | {{ $logo := .Resources.GetByPrefix "logo" }} 11 | {{ with $logo }} 12 | {{ end }} 13 | */}} 14 | 15 | {{ with .Resources.ByType "page" }} 16 | {{ range . }} 17 | foo 18 |

    {{ .Title }}

    19 | {{ .Content }} 20 | {{ end }} 21 | {{ end }} 22 | -------------------------------------------------------------------------------- /layouts/shortcodes/_work/res-all.html: -------------------------------------------------------------------------------- 1 | {{ range .Page.Resources }} 2 | {{/* {{ .ResourceType | title }}
    */}} 3 | {{.ResourceType}} {{.Name}}
    4 | {{ end }} 5 | -------------------------------------------------------------------------------- /layouts/shortcodes/_work/res-by-prefix.html: -------------------------------------------------------------------------------- 1 | {{ $res := .Page.Resources.GetByPrefix "logo" }} 2 | {{ with $res }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/_work/res-by-type.html: -------------------------------------------------------------------------------- 1 | {{ with .Page.Resources.ByType "image" }} 2 | {{ end }} 3 | -------------------------------------------------------------------------------- /layouts/shortcodes/_work/res-gal.html: -------------------------------------------------------------------------------- 1 | {{/* https://discourse.gohugo.io/t/solved-get-image-size-from-page-resource/10666 */}} 2 | 3 | {{ $galleryimages := .Page.Resources.Match "gallery-*" }} 4 | 5 | {{ range $galleryimages }} 6 | {{ $thumbnail := .Resize "320x" }} 7 | 8 |
    9 | 10 | --caption-- 11 | 12 | 13 |
    14 | --caption-- 15 | --copyrightHolder-- 16 |
    17 |
    18 | 19 | {{ end }} 20 | -------------------------------------------------------------------------------- /layouts/shortcodes/_work/res-page.html: -------------------------------------------------------------------------------- 1 | {{ with .Page.Resources.ByType "page" }} 2 | {{ range . }} 3 | {{ .Title | title }}
    4 |

    {{ .Title }}

    5 | {{ .ResourceType}} .ResourceType
    6 | {{ .Name }} .Name
    7 | {{ .Title }} .Title
    8 | {{ .Permalink }} .Permalink
    9 | {{ .RelPermalink}} .RelPermalink
    10 | 11 | {{ .Content }} 12 | {{ end }} 13 | {{ end }} 14 | -------------------------------------------------------------------------------- /layouts/shortcodes/asciicast.html: -------------------------------------------------------------------------------- 1 | 2 | {{- $id := .Get 0 }} 3 | {{/*- 4 | */}} 6 | 7 | 13 | {{- /* trackers (as of 2018-01-14): asciinema.org, gravatar.com */}} 14 | -------------------------------------------------------------------------------- /layouts/shortcodes/classify.html: -------------------------------------------------------------------------------- 1 | {{- .Scratch.Set `theClasses` `` }} 2 | {{- .Scratch.Set `theTag` `div` }} 3 | {{- if .IsNamedParams }} 4 | {{- .Scratch.Set `theClasses` (.Get `classes` | default (.Scratch.Get `theClasses` ) )}} 5 | {{- .Scratch.Set `theTag` (.Get `tag` | default (.Scratch.Get `theTag` ) )}} 6 | {{- else }} 7 | {{- $myPos := 0}} {{ if gt (len .Params) $myPos }} {{.Scratch.Set `theClasses` (.Get $myPos) }} {{end}} 8 | {{- $myPos := 1}} {{ if gt (len .Params) $myPos }} {{.Scratch.Set `theTag` (.Get $myPos) }} {{end}} 9 | {{- end }} 10 | 11 | {{- printf `<%s class="%s">` (.Scratch.Get `theTag`) (.Scratch.Get `theClasses`) | safeHTML }} 12 | {{- .Inner | markdownify | emojify }} 13 | {{- printf `` (.Scratch.Get `theTag`) | safeHTML }} 14 | -------------------------------------------------------------------------------- /layouts/shortcodes/gp.html: -------------------------------------------------------------------------------- 1 | {{/* https://github.com/gohugoio/hugo/issues/3606 */}} 2 | {{- $inlnk := .Get 0 }} 3 | {{- $pgfl := printf "%s.md" $inlnk }} 4 | {{- $pgtt := .Site.GetPage "page" $pgfl }} 5 | {{- if $pgtt }} 6 | {{ $pgtt.Title }} 7 | {{- else }} 8 | {{ $pgfl }} Not Found! 9 | {{- end }} 10 | -------------------------------------------------------------------------------- /layouts/shortcodes/hc.html: -------------------------------------------------------------------------------- 1 | {{- if or $.Site.Params.enableHC }} 2 | {{- with .Get 0}}{{ printf `` . | safeHTML }} {{end}} 3 | {{- printf `` .Inner | safeHTML }} 4 | {{- end}} 5 | -------------------------------------------------------------------------------- /layouts/shortcodes/html-tag.html: -------------------------------------------------------------------------------- 1 | {{ printf `<%s>%s` ($.Get 0 ) $.Inner ($.Get 0 ) | safeHTML }} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/html-tags.html: -------------------------------------------------------------------------------- 1 | {{ range (seq 0 (sub (len .Params) 1) ) }} 2 | {{ printf `<%s>` ($.Get . ) | safeHTML }} 3 | {{ end }} 4 | {{ $.Inner }} 5 | {{ range (seq (sub (len .Params) 1) -1 0) }} 6 | {{ printf `` ($.Get .) | safeHTML }} 7 | {{ end }} 8 | -------------------------------------------------------------------------------- /layouts/shortcodes/i18n.html: -------------------------------------------------------------------------------- 1 | {{ default (.Get 0) (.Get 0 | i18n) }} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/icon.html: -------------------------------------------------------------------------------- 1 | {{- $.Scratch.Set `theIcon` `fas fa-question` }} 2 | {{- $.Scratch.Set `theSize` `fa-1x` }} 3 | {{- if .IsNamedParams }} 4 | {{- $.Scratch.Set `theIcon` (.Get `name` | default ($.Scratch.Get `theIcon`) ) }} 5 | {{- $.Scratch.Set `theSize` (.Get `size` | default ($.Scratch.Get `theSize`) )}} 6 | {{- else}} 7 | {{- $myPos := 0}} {{ if gt (len .Params) $myPos }} {{$.Scratch.Set `theIcon` (.Get $myPos) }} {{end}} 8 | {{- $myPos := 1}} {{ if gt (len .Params) $myPos }} {{$.Scratch.Set `theSize` (.Get $myPos) }} {{end}} 9 | {{- end}} 10 | 11 | -------------------------------------------------------------------------------- /layouts/shortcodes/kbd.html: -------------------------------------------------------------------------------- 1 | {{- range (seq 0 (sub (len .Params) 1) ) }} 2 | {{ $.Get . }} 3 | {{- end }} 4 | -------------------------------------------------------------------------------- /layouts/shortcodes/res-debug.html: -------------------------------------------------------------------------------- 1 | {{/*- 2 | https://gohugo.io/content-management/organization/#page-bundles 3 | https://gohugo.io/content-management/page-resources/ 4 | https://github.com/gobwas/glob/blob/master/readme.md 5 | */}} 6 | 7 | 8 | {{- if or $.Site.Params.debug (findRE `\bdebug-shortcode(s|-res-debug)\b` $.Site.Params.traceFlags) }} 9 | {{.Page.Title}} 10 | 11 | {{- range $myResource := union ( .Page.Resources.Match "*" ) ( .Page.Resources.Match "**/*" ) }} 12 |
    13 | .Name : {{ $myResource.Name }}
    14 | .Title : {{ $myResource.Title }}
    15 | .ResourceType : {{ $myResource.ResourceType }}
    16 | .Permalink : {{ $myResource.Permalink }}
    17 | .RelPermalink : {{ $myResource.RelPermalink }}
    18 | {{- end }} {{/* range */}} 19 | {{- end }} 20 | -------------------------------------------------------------------------------- /layouts/shortcodes/term-in.html: -------------------------------------------------------------------------------- 1 |
    {{ .Inner }}
    2 | -------------------------------------------------------------------------------- /layouts/shortcodes/term-out.html: -------------------------------------------------------------------------------- 1 |
    {{ .Inner }}
    2 | -------------------------------------------------------------------------------- /layouts/shortcodes/toc.html: -------------------------------------------------------------------------------- 1 | {{ .Page.TableOfContents}} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/w3-badge.html: -------------------------------------------------------------------------------- 1 | {{- $myClasses := .Get 0 | default ``}} 2 | {{ .Inner }} 3 | -------------------------------------------------------------------------------- /layouts/shortcodes/w3-button-icon.html: -------------------------------------------------------------------------------- 1 | {{- $.Scratch.Set `theHref` `#` }} 2 | {{- $.Scratch.Set `theIcon` `` }} 3 | {{- $.Scratch.Set `theClasses` `w3-button w3-ripple w3-theme-l3 ` }} 4 | {{- if .IsNamedParams }} 5 | {{- $.Scratch.Set `theHref` (.Get `href` | default ($.Scratch.Get `theHref`) )}} 6 | {{- $.Scratch.Set `theIcon` (.Get `icon` | default ($.Scratch.Get `theIcon`) )}} 7 | {{- $.Scratch.Set `theClasses` (.Get `classes` | default ($.Scratch.Get `theClasses`) ) }} 8 | {{- else}} 9 | {{- $myPos := 0}} {{ if gt (len .Params) $myPos }} {{$.Scratch.Set `theHref` (.Get $myPos) }} {{end}} 10 | {{- $myPos := 1}} {{ if gt (len .Params) $myPos }} {{$.Scratch.Set `theIcon` (.Get $myPos) }} {{end}} 11 | {{- $myPos := 2}} {{ if gt (len .Params) $myPos }} {{$.Scratch.Set `theClasses` (.Get $myPos) }} {{end}} 12 | {{- end}} 13 | {{if $.Scratch.Get `theIcon`}}{{end}} {{ .Inner }} 14 | -------------------------------------------------------------------------------- /layouts/shortcodes/w3-code.html: -------------------------------------------------------------------------------- 1 |
    {{.Inner | htmlEscape | safeHTML }}
    2 | -------------------------------------------------------------------------------- /layouts/shortcodes/w3-codespan.html: -------------------------------------------------------------------------------- 1 | {{.Inner | safeHTML }} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/w3-col-youtube-playlist.html: -------------------------------------------------------------------------------- 1 | {{- range $index, $ytList := (seq 0 (sub (len .Params) 1) ) }} 2 | {{- if eq (mod $index 3) 0 }} 3 |
    4 | {{- end }} 5 |
    6 |
    7 | {{/* https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/shortcodes/youtube.html */}} 8 | {{- $pc := $.Page.Site.Config.Privacy.YouTube -}} 9 | {{- if not $pc.Disable -}} 10 | {{- $ytHost := cond $pc.PrivacyEnhanced "www.youtube-nocookie.com" "www.youtube.com" -}} 11 | {{- $pl := $.Get $index -}} 12 |
    13 | 18 |
    19 | {{ end -}} 20 |
    21 |
    22 | {{- if or (eq (mod $index 3) 2) (eq $index (sub (len $.Params) 1 )) }} 23 |
    24 |

    25 | {{- end }} 26 | {{- end }} 27 | -------------------------------------------------------------------------------- /layouts/shortcodes/w3-col-youtube.html: -------------------------------------------------------------------------------- 1 | {{- range $index, $ytList := (seq 0 (sub (len .Params) 1) ) }} 2 | {{- if eq (mod $index 3) 0 }} 3 |

    4 | {{- end }} 5 |
    6 |
    7 | {{/* https://github.com/gohugoio/hugo/blob/master/tpl/tplimpl/embedded/templates/shortcodes/youtube.html */}} 8 | {{- $pc := $.Page.Site.Config.Privacy.YouTube -}} 9 | {{- if not $pc.Disable -}} 10 | {{- $ytHost := cond $pc.PrivacyEnhanced "www.youtube-nocookie.com" "www.youtube.com" -}} 11 | {{- $id := $.Get $index -}} 12 |
    13 | 18 |
    19 | {{ end -}} 20 |
    21 |
    22 | {{- if or (eq (mod $index 3) 2) (eq $index (sub (len $.Params) 1 )) }} 23 |
    24 |

    25 | {{- end }} 26 | {{- end }} 27 | -------------------------------------------------------------------------------- /layouts/shortcodes/w3-tag.html: -------------------------------------------------------------------------------- 1 | {{- $myClasses := .Get 0 | default ``}} 2 | {{ .Inner }} 3 | -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- 1 | /* custom goes here */ 2 | -------------------------------------------------------------------------------- /static/css/readme.txt: -------------------------------------------------------------------------------- 1 | yui-compressor --verbose --type css --line-break 1023 w3css-basic.css -o w3css-basic.min.css 2 | yui-compressor --verbose --type css --line-break 1023 syntax.css -o syntax.min.css 3 | -------------------------------------------------------------------------------- /static/css/syntax/.generate.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # hugo gen chromastyles -h 4 | 5 | styles=$(cat <<'EOV' 6 | abap 7 | algol 8 | algol_nu 9 | api 10 | arduino 11 | autumn 12 | borland 13 | bw 14 | colorful 15 | dracula 16 | emacs 17 | friendly 18 | fruity 19 | github 20 | igor 21 | lovelace 22 | manni 23 | monokai 24 | monokailight 25 | murphy 26 | native 27 | paraiso-dark 28 | paraiso-light 29 | pastie 30 | perldoc 31 | pygments 32 | rainbow_dash 33 | rrt 34 | solarized-dark 35 | solarized-dark256 36 | solarized-light 37 | swapoff 38 | tango 39 | trac 40 | vim 41 | vs 42 | xcode 43 | EOV 44 | ) 45 | 46 | for s in $styles; do 47 | hugo gen chromastyles --style=$s > syntax.$s.css 48 | done 49 | -------------------------------------------------------------------------------- /static/images/backgrounds/see_more_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/images/backgrounds/see_more_background.jpg -------------------------------------------------------------------------------- /static/js/custom.bottom.js: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------------- */ 2 | /* custom included at the bottom */ 3 | -------------------------------------------------------------------------------- /static/js/custom.top.js: -------------------------------------------------------------------------------- 1 | /* -------------------------------------------------- */ 2 | /* custom included at to top */ 3 | function getCookie (e) { 4 | var t = "; " + document.cookie, 5 | i = t.split("; " + e + "="); 6 | return 2 != i.length ? void 0 : i.pop().split(";").shift(); 7 | } 8 | -------------------------------------------------------------------------------- /static/js/front.min.js: -------------------------------------------------------------------------------- 1 | $(".jumbotron-owl").owlCarousel({nav:false,navText:["-","+"],dots:false,loop:true,autoplay:true,autoplayTimeout:5000,center:true,margin:30,animateOut:"fadeOut",stagePadding:0,smartSpeed:450,items:1,});$(".clients-owl").owlCarousel({nav:false,navText:["-","+"],dots:false,loop:true,autoplay:true,autoplayTimeout:5000,center:true,margin:30,stagePadding:15,smartSpeed:450,items:1,responsiveClass:true,responsive:{0:{items:1},768:{items:2},990:{items:3},},});$(".testimonials-owl").owlCarousel({nav:false,navText:["-","+"],dots:false,loop:true,autoplay:true,autoplayTimeout:5000,center:true,margin:30,stagePadding:15,smartSpeed:450,items:1,responsiveClass:true,responsive:{0:{items:1},768:{items:1},990:{items:3},},}); -------------------------------------------------------------------------------- /static/vendor/OwlCarousel2/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 Owl 2 | Modified work Copyright 2016-2018 David Deutsch 3 | 4 | Permission is hereby granted, free of charge, to any person 5 | obtaining a copy of this software and associated documentation 6 | files (the "Software"), to deal in the Software without 7 | restriction, including without limitation the rights to use, 8 | copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the 10 | Software is furnished to do so, subject to the following 11 | conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 18 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 19 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 20 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 21 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 22 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 23 | OTHER DEALINGS IN THE SOFTWARE. 24 | -------------------------------------------------------------------------------- /static/vendor/OwlCarousel2/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/OwlCarousel2/assets/ajax-loader.gif -------------------------------------------------------------------------------- /static/vendor/OwlCarousel2/assets/owl.theme.default.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.3.4 3 | * Copyright 2013-2018 David Deutsch 4 | * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE 5 | */ 6 | .owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} -------------------------------------------------------------------------------- /static/vendor/OwlCarousel2/assets/owl.theme.green.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.3.4 3 | * Copyright 2013-2018 David Deutsch 4 | * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE 5 | */ 6 | .owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#4DC7A0;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#4DC7A0} -------------------------------------------------------------------------------- /static/vendor/OwlCarousel2/assets/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/OwlCarousel2/assets/owl.video.play.png -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/css/regular.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | :root, :host { 7 | --fa-style-family-classic: 'Font Awesome 6 Free'; 8 | --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; } 9 | 10 | @font-face { 11 | font-family: 'Font Awesome 6 Free'; 12 | font-style: normal; 13 | font-weight: 400; 14 | font-display: block; 15 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } 16 | 17 | .far, 18 | .fa-regular { 19 | font-weight: 400; } 20 | -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/css/regular.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400} -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/css/solid.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | :root, :host { 7 | --fa-style-family-classic: 'Font Awesome 6 Free'; 8 | --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; } 9 | 10 | @font-face { 11 | font-family: 'Font Awesome 6 Free'; 12 | font-style: normal; 13 | font-weight: 900; 14 | font-display: block; 15 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 16 | 17 | .fas, 18 | .fa-solid { 19 | font-weight: 900; } 20 | -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/css/solid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900} -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/css/v5-font-face.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | @font-face { 7 | font-family: 'Font Awesome 5 Brands'; 8 | font-display: block; 9 | font-weight: 400; 10 | src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } 11 | 12 | @font-face { 13 | font-family: 'Font Awesome 5 Free'; 14 | font-display: block; 15 | font-weight: 900; 16 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 17 | 18 | @font-face { 19 | font-family: 'Font Awesome 5 Free'; 20 | font-display: block; 21 | font-weight: 400; 22 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } 23 | -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/css/v5-font-face.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | @font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")} -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/fontawesome/6.6.0/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/fontawesome/6.6.0/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/fontawesome/6.6.0/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/fontawesome/6.6.0/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/fontawesome/6.6.0/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/fontawesome/6.6.0/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/fontawesome/6.6.0/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /static/vendor/fontawesome/6.6.0/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/fontawesome/6.6.0/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/_readme.txt: -------------------------------------------------------------------------------- 1 | Currently I see no way to prefix 2 | src: url('/vendor/...') 3 | with the (optional) path (subdir) defined in BaseURL. 4 | 5 | So I keep these files, but do not support them... 6 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-mono-v7-latin-700.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-mono-700 - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu Mono'; 4 | font-style: normal; 5 | font-weight: 700; 6 | src: url('/vendor/google/fonts/ubuntu-mono-v7-latin-700.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Mono Bold'), local('UbuntuMono-Bold'), 8 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700.svg#UbuntuMono') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-mono-v7-latin-700italic.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-mono-700italic - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu Mono'; 4 | font-style: italic; 5 | font-weight: 700; 6 | src: url('/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Mono Bold Italic'), local('UbuntuMono-BoldItalic'), 8 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.svg#UbuntuMono') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-mono-v7-latin-italic.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-mono-italic - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu Mono'; 4 | font-style: italic; 5 | font-weight: 400; 6 | src: url('/vendor/google/fonts/ubuntu-mono-v7-latin-italic.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Mono Italic'), local('UbuntuMono-Italic'), 8 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-italic.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-italic.svg#UbuntuMono') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-mono-v7-latin-regular.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-mono-regular - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu Mono'; 4 | font-style: normal; 5 | font-weight: 400; 6 | src: url('/vendor/google/fonts/ubuntu-mono-v7-latin-regular.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Mono'), local('UbuntuMono-Regular'), 8 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-regular.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-mono-v7-latin-regular.svg#UbuntuMono') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-v11-latin-300.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-300 - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu'; 4 | font-style: normal; 5 | font-weight: 300; 6 | src: url('/vendor/google/fonts/ubuntu-v11-latin-300.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Light'), local('Ubuntu-Light'), 8 | url('/vendor/google/fonts/ubuntu-v11-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-v11-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-v11-latin-300.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-v11-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-v11-latin-300.svg#Ubuntu') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-v11-latin-300italic.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-300italic - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu'; 4 | font-style: italic; 5 | font-weight: 300; 6 | src: url('/vendor/google/fonts/ubuntu-v11-latin-300italic.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Light Italic'), local('Ubuntu-LightItalic'), 8 | url('/vendor/google/fonts/ubuntu-v11-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-v11-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-v11-latin-300italic.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-v11-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-v11-latin-300italic.svg#Ubuntu') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-v11-latin-500.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-500 - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu'; 4 | font-style: normal; 5 | font-weight: 500; 6 | src: url('/vendor/google/fonts/ubuntu-v11-latin-500.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Medium'), local('Ubuntu-Medium'), 8 | url('/vendor/google/fonts/ubuntu-v11-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-v11-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-v11-latin-500.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-v11-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-v11-latin-500.svg#Ubuntu') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-v11-latin-500italic.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-500italic - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu'; 4 | font-style: italic; 5 | font-weight: 500; 6 | src: url('/vendor/google/fonts/ubuntu-v11-latin-500italic.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Medium Italic'), local('Ubuntu-MediumItalic'), 8 | url('/vendor/google/fonts/ubuntu-v11-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-v11-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-v11-latin-500italic.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-v11-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-v11-latin-500italic.svg#Ubuntu') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-v11-latin-700.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-700 - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu'; 4 | font-style: normal; 5 | font-weight: 700; 6 | src: url('/vendor/google/fonts/ubuntu-v11-latin-700.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Bold'), local('Ubuntu-Bold'), 8 | url('/vendor/google/fonts/ubuntu-v11-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-v11-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-v11-latin-700.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-v11-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-v11-latin-700.svg#Ubuntu') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-v11-latin-700italic.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-700italic - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu'; 4 | font-style: italic; 5 | font-weight: 700; 6 | src: url('/vendor/google/fonts/ubuntu-v11-latin-700italic.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Bold Italic'), local('Ubuntu-BoldItalic'), 8 | url('/vendor/google/fonts/ubuntu-v11-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-v11-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-v11-latin-700italic.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-v11-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-v11-latin-700italic.svg#Ubuntu') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-v11-latin-italic.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-italic - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu'; 4 | font-style: italic; 5 | font-weight: 400; 6 | src: url('/vendor/google/fonts/ubuntu-v11-latin-italic.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Italic'), local('Ubuntu-Italic'), 8 | url('/vendor/google/fonts/ubuntu-v11-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-v11-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-v11-latin-italic.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-v11-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-v11-latin-italic.svg#Ubuntu') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/css/ubuntu-v11-latin-regular.css: -------------------------------------------------------------------------------- 1 | /* ubuntu-regular - latin */ 2 | @font-face { 3 | font-family: 'Ubuntu'; 4 | font-style: normal; 5 | font-weight: 400; 6 | src: url('/vendor/google/fonts/ubuntu-v11-latin-regular.eot'); /* IE9 Compat Modes */ 7 | src: local('Ubuntu Regular'), local('Ubuntu-Regular'), 8 | url('/vendor/google/fonts/ubuntu-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ 9 | url('/vendor/google/fonts/ubuntu-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ 10 | url('/vendor/google/fonts/ubuntu-v11-latin-regular.woff') format('woff'), /* Modern Browsers */ 11 | url('/vendor/google/fonts/ubuntu-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ 12 | url('/vendor/google/fonts/ubuntu-v11-latin-regular.svg#Ubuntu') format('svg'); /* Legacy iOS */ 13 | } 14 | -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-700.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-700.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-700.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-700.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-700italic.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-italic.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-italic.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-italic.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-italic.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-regular.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-regular.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-regular.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-mono-v7-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-mono-v7-latin-regular.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-300.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-300.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-300.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-300.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-300italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-300italic.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-300italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-300italic.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-300italic.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-300italic.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-500.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-500.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-500.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-500.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-500italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-500italic.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-500italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-500italic.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-500italic.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-500italic.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-700.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-700.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-700.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-700.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-700italic.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-700italic.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-700italic.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-700italic.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-italic.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-italic.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-italic.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-italic.woff2 -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-regular.eot -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-regular.ttf -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-regular.woff -------------------------------------------------------------------------------- /static/vendor/google/fonts/ubuntu-v11-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/google/fonts/ubuntu-v11-latin-regular.woff2 -------------------------------------------------------------------------------- /static/vendor/liwenyip/hugo-easy-gallery/LICENCE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Li-Wen Yip 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 | -------------------------------------------------------------------------------- /static/vendor/photoswipe/default-skin/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/photoswipe/default-skin/default-skin.png -------------------------------------------------------------------------------- /static/vendor/photoswipe/default-skin/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/it-gro/hugo-theme-w3css-basic/36cef9545dbfe70af2eb3fba1e185d35c2a6aa79/static/vendor/photoswipe/default-skin/preloader.gif -------------------------------------------------------------------------------- /static/vendor/w3css/4/w3-theme-amber.css: -------------------------------------------------------------------------------- 1 | .w3-theme-l5 {color:#000 !important; background-color:#fffbf0 !important} 2 | .w3-theme-l4 {color:#000 !important; background-color:#fff3cd !important} 3 | .w3-theme-l3 {color:#000 !important; background-color:#ffe69b !important} 4 | .w3-theme-l2 {color:#000 !important; background-color:#ffda69 !important} 5 | .w3-theme-l1 {color:#000 !important; background-color:#ffcd37 !important} 6 | .w3-theme-d1 {color:#000 !important; background-color:#eab000 !important} 7 | .w3-theme-d2 {color:#fff !important; background-color:#d09c00 !important} 8 | .w3-theme-d3 {color:#fff !important; background-color:#b68900 !important} 9 | .w3-theme-d4 {color:#fff !important; background-color:#9c7500 !important} 10 | .w3-theme-d5 {color:#fff !important; background-color:#826200 !important} 11 | 12 | .w3-theme-light {color:#000 !important; background-color:#fffbf0 !important} 13 | .w3-theme-dark {color:#fff !important; background-color:#826200 !important} 14 | .w3-theme-action {color:#fff !important; background-color:#826200 !important} 15 | 16 | .w3-theme {color:#000 !important; background-color:#ffc107 !important} 17 | .w3-text-theme {color:#ffc107 !important} 18 | .w3-border-theme {border-color:#ffc107 !important} 19 | 20 | .w3-hover-theme:hover {color:#000 !important; background-color:#ffc107 !important} 21 | .w3-hover-text-theme:hover {color:#ffc107 !important} 22 | .w3-hover-border-theme:hover {border-color:#ffc107 !important} -------------------------------------------------------------------------------- /static/vendor/w3css/4/w3-theme-black.css: -------------------------------------------------------------------------------- 1 | .w3-theme-l5 {color:#000 !important; background-color:#f0f0f0 !important} 2 | .w3-theme-l4 {color:#000 !important; background-color:#cccccc !important} 3 | .w3-theme-l3 {color:#fff !important; background-color:#999999 !important} 4 | .w3-theme-l2 {color:#fff !important; background-color:#666666 !important} 5 | .w3-theme-l1 {color:#fff !important; background-color:#333333 !important} 6 | .w3-theme-d1 {color:#fff !important; background-color:#000000 !important} 7 | .w3-theme-d2 {color:#fff !important; background-color:#000000 !important} 8 | .w3-theme-d3 {color:#fff !important; background-color:#000000 !important} 9 | .w3-theme-d4 {color:#fff !important; background-color:#000000 !important} 10 | .w3-theme-d5 {color:#fff !important; background-color:#000000 !important} 11 | 12 | .w3-theme-light {color:#000 !important; background-color:#f0f0f0 !important} 13 | .w3-theme-dark {color:#fff !important; background-color:#000000 !important} 14 | .w3-theme-action {color:#fff !important; background-color:#000000 !important} 15 | 16 | .w3-theme {color:#fff !important; background-color:#000000 !important} 17 | .w3-text-theme {color:#000000 !important} 18 | .w3-border-theme {border-color:#000000 !important} 19 | 20 | .w3-hover-theme:hover {color:#fff !important; background-color:#000000 !important} 21 | .w3-hover-text-theme:hover {color:#000000 !important} 22 | .w3-hover-border-theme:hover {border-color:#000000 !important} -------------------------------------------------------------------------------- /static/vendor/w3css/4/w3-theme-blue.css: -------------------------------------------------------------------------------- 1 | .w3-theme-l5 {color:#000 !important; background-color:#f2f9fe !important} 2 | .w3-theme-l4 {color:#000 !important; background-color:#d2eafd !important} 3 | .w3-theme-l3 {color:#000 !important; background-color:#a6d4fa !important} 4 | .w3-theme-l2 {color:#000 !important; background-color:#79bff8 !important} 5 | .w3-theme-l1 {color:#fff !important; background-color:#4daaf6 !important} 6 | .w3-theme-d1 {color:#fff !important; background-color:#0c87eb !important} 7 | .w3-theme-d2 {color:#fff !important; background-color:#0b78d1 !important} 8 | .w3-theme-d3 {color:#fff !important; background-color:#0a69b7 !important} 9 | .w3-theme-d4 {color:#fff !important; background-color:#085a9d !important} 10 | .w3-theme-d5 {color:#fff !important; background-color:#074b83 !important} 11 | 12 | .w3-theme-light {color:#000 !important; background-color:#f2f9fe !important} 13 | .w3-theme-dark {color:#fff !important; background-color:#074b83 !important} 14 | .w3-theme-action {color:#fff !important; background-color:#074b83 !important} 15 | 16 | .w3-theme {color:#fff !important; background-color:#2196f3 !important} 17 | .w3-text-theme {color:#2196f3 !important} 18 | .w3-border-theme {border-color:#2196f3 !important} 19 | 20 | .w3-hover-theme:hover {color:#fff !important; background-color:#2196f3 !important} 21 | .w3-hover-text-theme:hover {color:#2196f3 !important} 22 | .w3-hover-border-theme:hover {border-color:#2196f3 !important} -------------------------------------------------------------------------------- /static/vendor/w3css/4/w3-theme-cyan.css: -------------------------------------------------------------------------------- 1 | .w3-theme-l5 {color:#000 !important; background-color:#edfdff !important} 2 | .w3-theme-l4 {color:#000 !important; background-color:#c4f8ff !important} 3 | .w3-theme-l3 {color:#000 !important; background-color:#89f1ff !important} 4 | .w3-theme-l2 {color:#000 !important; background-color:#4eeaff !important} 5 | .w3-theme-l1 {color:#000 !important; background-color:#12e3ff !important} 6 | .w3-theme-d1 {color:#fff !important; background-color:#00aac1 !important} 7 | .w3-theme-d2 {color:#fff !important; background-color:#0097ab !important} 8 | .w3-theme-d3 {color:#fff !important; background-color:#008496 !important} 9 | .w3-theme-d4 {color:#fff !important; background-color:#007281 !important} 10 | .w3-theme-d5 {color:#fff !important; background-color:#005f6b !important} 11 | 12 | .w3-theme-light {color:#000 !important; background-color:#edfdff !important} 13 | .w3-theme-dark {color:#fff !important; background-color:#005f6b !important} 14 | .w3-theme-action {color:#fff !important; background-color:#005f6b !important} 15 | 16 | .w3-theme {color:#fff !important; background-color:#00bcd4 !important} 17 | .w3-text-theme {color:#00bcd4 !important} 18 | .w3-border-theme {border-color:#00bcd4 !important} 19 | 20 | .w3-hover-theme:hover {color:#fff !important; background-color:#00bcd4 !important} 21 | .w3-hover-text-theme:hover {color:#00bcd4 !important} 22 | .w3-hover-border-theme:hover {border-color:#00bcd4 !important} -------------------------------------------------------------------------------- /static/vendor/w3css/4/w3-theme-grey.css: -------------------------------------------------------------------------------- 1 | .w3-theme-l5 {color:#000 !important; background-color:#f9f9f9 !important} 2 | .w3-theme-l4 {color:#000 !important; background-color:#ececec !important} 3 | .w3-theme-l3 {color:#000 !important; background-color:#d8d8d8 !important} 4 | .w3-theme-l2 {color:#000 !important; background-color:#c5c5c5 !important} 5 | .w3-theme-l1 {color:#000 !important; background-color:#b1b1b1 !important} 6 | .w3-theme-d1 {color:#fff !important; background-color:#8e8e8e !important} 7 | .w3-theme-d2 {color:#fff !important; background-color:#7e7e7e !important} 8 | .w3-theme-d3 {color:#fff !important; background-color:#6f6f6f !important} 9 | .w3-theme-d4 {color:#fff !important; background-color:#5f5f5f !important} 10 | .w3-theme-d5 {color:#fff !important; background-color:#4f4f4f !important} 11 | 12 | .w3-theme-light {color:#000 !important; background-color:#f9f9f9 !important} 13 | .w3-theme-dark {color:#fff !important; background-color:#4f4f4f !important} 14 | .w3-theme-action {color:#fff !important; background-color:#4f4f4f !important} 15 | 16 | .w3-theme {color:#fff !important; background-color:#9e9e9e !important} 17 | .w3-text-theme {color:#9e9e9e !important} 18 | .w3-border-theme {border-color:#9e9e9e !important} 19 | 20 | .w3-hover-theme:hover {color:#fff !important; background-color:#9e9e9e !important} 21 | .w3-hover-text-theme:hover {color:#9e9e9e !important} 22 | .w3-hover-border-theme:hover {border-color:#9e9e9e !important} -------------------------------------------------------------------------------- /static/vendor/w3css/4/w3-theme-lime.css: -------------------------------------------------------------------------------- 1 | .w3-theme-l5 {color:#000 !important; background-color:#fcfdf3 !important} 2 | .w3-theme-l4 {color:#000 !important; background-color:#f5f8d7 !important} 3 | .w3-theme-l3 {color:#000 !important; background-color:#eaf1af !important} 4 | .w3-theme-l2 {color:#000 !important; background-color:#e0ea87 !important} 5 | .w3-theme-l1 {color:#000 !important; background-color:#d6e35f !important} 6 | .w3-theme-d1 {color:#000 !important; background-color:#c1d325 !important} 7 | .w3-theme-d2 {color:#fff !important; background-color:#acbb21 !important} 8 | .w3-theme-d3 {color:#fff !important; background-color:#96a41d !important} 9 | .w3-theme-d4 {color:#fff !important; background-color:#818c19 !important} 10 | .w3-theme-d5 {color:#fff !important; background-color:#6b7515 !important} 11 | 12 | .w3-theme-light {color:#000 !important; background-color:#fcfdf3 !important} 13 | .w3-theme-dark {color:#fff !important; background-color:#6b7515 !important} 14 | .w3-theme-action {color:#fff !important; background-color:#6b7515 !important} 15 | 16 | .w3-theme {color:#000 !important; background-color:#cddc39 !important} 17 | .w3-text-theme {color:#cddc39 !important} 18 | .w3-border-theme {border-color:#cddc39 !important} 19 | 20 | .w3-hover-theme:hover {color:#000 !important; background-color:#cddc39 !important} 21 | .w3-hover-text-theme:hover {color:#cddc39 !important} 22 | .w3-hover-border-theme:hover {border-color:#cddc39 !important} -------------------------------------------------------------------------------- /static/vendor/w3css/4/w3-theme-pink.css: -------------------------------------------------------------------------------- 1 | .w3-theme-l5 {color:#000 !important; background-color:#fef2f6 !important} 2 | .w3-theme-l4 {color:#000 !important; background-color:#fbd2e0 !important} 3 | .w3-theme-l3 {color:#000 !important; background-color:#f6a6c1 !important} 4 | .w3-theme-l2 {color:#fff !important; background-color:#f279a1 !important} 5 | .w3-theme-l1 {color:#fff !important; background-color:#ed4d82 !important} 6 | .w3-theme-d1 {color:#fff !important; background-color:#d91557 !important} 7 | .w3-theme-d2 {color:#fff !important; background-color:#c1134d !important} 8 | .w3-theme-d3 {color:#fff !important; background-color:#a91143 !important} 9 | .w3-theme-d4 {color:#fff !important; background-color:#910e3a !important} 10 | .w3-theme-d5 {color:#fff !important; background-color:#790c30 !important} 11 | 12 | .w3-theme-light {color:#000 !important; background-color:#fef2f6 !important} 13 | .w3-theme-dark {color:#fff !important; background-color:#790c30 !important} 14 | .w3-theme-action {color:#fff !important; background-color:#790c30 !important} 15 | 16 | .w3-theme {color:#fff !important; background-color:#e91e63 !important} 17 | .w3-text-theme {color:#e91e63 !important} 18 | .w3-border-theme {border-color:#e91e63 !important} 19 | 20 | .w3-hover-theme:hover {color:#fff !important; background-color:#e91e63 !important} 21 | .w3-hover-text-theme:hover {color:#e91e63 !important} 22 | .w3-hover-border-theme:hover {border-color:#e91e63 !important} -------------------------------------------------------------------------------- /static/vendor/w3css/4/w3-theme-red.css: -------------------------------------------------------------------------------- 1 | .w3-theme-l5 {color:#000 !important; background-color:#fef4f3 !important} 2 | .w3-theme-l4 {color:#000 !important; background-color:#fdd9d6 !important} 3 | .w3-theme-l3 {color:#000 !important; background-color:#fbb3ae !important} 4 | .w3-theme-l2 {color:#000 !important; background-color:#f98d85 !important} 5 | .w3-theme-l1 {color:#fff !important; background-color:#f6665c !important} 6 | .w3-theme-d1 {color:#fff !important; background-color:#f32617 !important} 7 | .w3-theme-d2 {color:#fff !important; background-color:#e11a0c !important} 8 | .w3-theme-d3 {color:#fff !important; background-color:#c5170a !important} 9 | .w3-theme-d4 {color:#fff !important; background-color:#a91409 !important} 10 | .w3-theme-d5 {color:#fff !important; background-color:#8d1007 !important} 11 | 12 | .w3-theme-light {color:#000 !important; background-color:#fef4f3 !important} 13 | .w3-theme-dark {color:#fff !important; background-color:#8d1007 !important} 14 | .w3-theme-action {color:#fff !important; background-color:#8d1007 !important} 15 | 16 | .w3-theme {color:#fff !important; background-color:#f44336 !important} 17 | .w3-text-theme {color:#f44336 !important} 18 | .w3-border-theme {border-color:#f44336 !important} 19 | 20 | .w3-hover-theme:hover {color:#fff !important; background-color:#f44336 !important} 21 | .w3-hover-text-theme:hover {color:#f44336 !important} 22 | .w3-hover-border-theme:hover {border-color:#f44336 !important} -------------------------------------------------------------------------------- /static/vendor/w3css/4/w3-theme-teal.css: -------------------------------------------------------------------------------- 1 | .w3-theme-l5 {color:#000 !important; background-color:#e9fffd !important} 2 | .w3-theme-l4 {color:#000 !important; background-color:#b7fff8 !important} 3 | .w3-theme-l3 {color:#000 !important; background-color:#6efff1 !important} 4 | .w3-theme-l2 {color:#000 !important; background-color:#26ffe9 !important} 5 | .w3-theme-l1 {color:#fff !important; background-color:#00dcc6 !important} 6 | .w3-theme-d1 {color:#fff !important; background-color:#008578 !important} 7 | .w3-theme-d2 {color:#fff !important; background-color:#00766a !important} 8 | .w3-theme-d3 {color:#fff !important; background-color:#00685d !important} 9 | .w3-theme-d4 {color:#fff !important; background-color:#005950 !important} 10 | .w3-theme-d5 {color:#fff !important; background-color:#004a43 !important} 11 | 12 | .w3-theme-light {color:#000 !important; background-color:#e9fffd !important} 13 | .w3-theme-dark {color:#fff !important; background-color:#004a43 !important} 14 | .w3-theme-action {color:#fff !important; background-color:#004a43 !important} 15 | 16 | .w3-theme {color:#fff !important; background-color:#009688 !important} 17 | .w3-text-theme {color:#009688 !important} 18 | .w3-border-theme {border-color:#009688 !important} 19 | 20 | .w3-hover-theme:hover {color:#fff !important; background-color:#009688 !important} 21 | .w3-hover-text-theme:hover {color:#009688 !important} 22 | .w3-hover-border-theme:hover {border-color:#009688 !important} --------------------------------------------------------------------------------