mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-08 22:49:44 +00:00
Merge branch 'next_gen' of https://github.com/Hanzei/hugo-theme-introduction into Hanzei-next_gen
This commit is contained in:
commit
a6f92dcc26
151 changed files with 22295 additions and 400 deletions
|
@ -2,7 +2,7 @@ git:
|
|||
depth: false
|
||||
|
||||
env:
|
||||
- HUGO_VERSION="0.44"
|
||||
- HUGO_VERSION="0.45"
|
||||
|
||||
install:
|
||||
- wget -q https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz
|
||||
|
|
46
README.md
46
README.md
|
@ -1,5 +1,7 @@
|
|||
# <a href="https://vickylai.com/introduction/" target="_blank" rel="noopener">Introduction theme for Hugo</a>
|
||||
# Introduction theme for Hugo
|
||||
|
||||
[![Build Status](https://travis-ci.com/vickylai/hugo-theme-introduction.svg?branch=master)](https://travis-ci.com/vickylai/hugo-theme-introduction)
|
||||
![Latest Release](https://img.shields.io/github/tag/vickylai/hugo-theme-introduction.svg)
|
||||
|
||||
A minimal, smooth-scrolling theme for Hugo. Can be configured as a single page site or full-featured site with many sections.
|
||||
|
||||
|
@ -15,17 +17,22 @@ Features:
|
|||
- Smooth scroll-to-section navigation
|
||||
- Responsive and fast
|
||||
|
||||
# Quick start
|
||||
## Quick start
|
||||
|
||||
## Get the theme
|
||||
### Get the theme
|
||||
|
||||
From the root of your Hugo site:
|
||||
Run from the root of your Hugo site:
|
||||
```sh
|
||||
$ cd themes
|
||||
$ git clone https://github.com/vickylai/hugo-theme-introduction.git introduction
|
||||
$ git clone https://github.com/vickylai/hugo-theme-introduction.git themes/introduction
|
||||
```
|
||||
|
||||
## Configure your site
|
||||
Alternatively you can include this repository as a [git submodule](https://git-scm.com/book/de/v1/Git-Tools-Submodule). This makes it easier to update this theme if you have your Hugo site in git as well. For this you need to run:
|
||||
|
||||
```sh
|
||||
$ git submodule add https://github.com/vickylai/hugo-theme-introduction.git themes/introduction
|
||||
```
|
||||
|
||||
### Configure your site
|
||||
|
||||
From the exampleSite, copy `config.toml` to the root folder of your Hugo site and change the fields as you like.
|
||||
|
||||
|
@ -36,11 +43,9 @@ Important bits:
|
|||
1. Set the desired `introHeight` for your main page (use "medium", "large", or "fullheight")
|
||||
1. Choose a "light" or "dark" `themeStyle`
|
||||
1. Set your `avatar` image
|
||||
1. Choose whether or not to `showBlog` on the main page
|
||||
1. Choose whether or not to `showProjects` on the main page
|
||||
1. Input your social site urls and font-awesome icon names - use as many as you like
|
||||
|
||||
## Create About and Contact pages
|
||||
### Create About and Contact pages
|
||||
|
||||
Run:
|
||||
```sh
|
||||
|
@ -49,7 +54,7 @@ $ hugo new contact.md
|
|||
```
|
||||
Then edit the markdown files with the content you'd like shown in your main page's About and Contact sections.
|
||||
|
||||
## Preview your site locally
|
||||
### Preview your site locally
|
||||
|
||||
Use Hugo's built-in server to see your site in action as you make changes.
|
||||
|
||||
|
@ -94,24 +99,13 @@ If you don't specify a `title`, only the photo will show. You can still add cont
|
|||
|
||||
If you leave `external_link` empty, clicking on a project on your main page will pop up a window with the project's details. If you specify a url instead, clicking on the project on your main page will take you to that url.
|
||||
|
||||
# Contributing
|
||||
## Contributing
|
||||
|
||||
Pull requests for bug fixes and suggestions are welcome.
|
||||
|
||||
Contributors are listed in [CHANGELOG.md](https://github.com/vickylai/hugo-theme-introduction/blob/master/CHANGELOG.md). Thank you so much! 🖤
|
||||
|
||||
# License
|
||||
Copyright (C) 2018 Vicky Lai
|
||||
## License
|
||||
Copyright (C) 2018 [Vicky Lai](https://vickylai.com/introduction/)
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as
|
||||
published by the Free Software Foundation, either version 3 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
Licensed under [AGPL-3.0](https://github.com/vickylai/hugo-theme-introduction/blob/master/LICENSE)
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
// Nav burger animation
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
// Get all "navbar-burger" elements
|
||||
var $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
|
||||
// Check if there are any navbar burgers
|
||||
if ($navbarBurgers.length > 0) {
|
||||
// Add a click event on each of them
|
||||
$navbarBurgers.forEach(function ($el) {
|
||||
$el.addEventListener('click', function () {
|
||||
// Get the target from the "data-target" attribute
|
||||
var target = $el.dataset.target;
|
||||
var $target = document.getElementById(target);
|
||||
// Toggle the class on both the "navbar-burger" and the "navbar-menu"
|
||||
$el.classList.toggle('is-active');
|
||||
$target.classList.toggle('is-active');
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// Bitty scrolling links script
|
||||
$('a[href^="#"]').click(function(e) {
|
||||
e.preventDefault();
|
||||
|
@ -20,12 +40,6 @@ $('.modal-close').click(function () {
|
|||
$(document).keypress(function(e) {
|
||||
if(e.which == 0) {
|
||||
$('.modal.is-active').removeClass('is-active');
|
||||
$("html").removeClass("modal-open");
|
||||
}
|
||||
});
|
||||
|
||||
{{ if and .Site.Params.localTime .Page.IsHome }}
|
||||
$(document).ready(function() {
|
||||
var time = moment().tz("{{ .Site.Params.timeZone }}").format("h:mm A");
|
||||
$('#time').html(time);
|
||||
})
|
||||
{{ end }}
|
||||
|
|
4
assets/js/initMoment.js
Normal file
4
assets/js/initMoment.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
$(document).ready(function() {
|
||||
var time = moment().tz("{{ .Site.Params.home.timeZone }}").format("h:mm A");
|
||||
$('#time').html(time);
|
||||
})
|
9
assets/js/initOwlCarousel.js
Normal file
9
assets/js/initOwlCarousel.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
$(document).ready(function(){
|
||||
$(".owl-carousel").owlCarousel({
|
||||
loop: true,
|
||||
nav: true,
|
||||
margin: 10,
|
||||
items: 1,
|
||||
autoHeight: true
|
||||
});
|
||||
});
|
|
@ -1,6 +1,6 @@
|
|||
$family-sans-serif: Nunito Sans, sans-serif
|
||||
$title-stack: Nunito Sans, sans-serif
|
||||
$body-size: 16px
|
||||
$code: $primary
|
||||
$code-background: $background
|
||||
$title-weight: 300
|
||||
$navbar-background-color: $background
|
||||
$navbar-item-hover-background-color: $background
|
||||
$navbar-item-hover-color: $secondary
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
html
|
||||
background-color: $background
|
||||
|
||||
body
|
||||
font-size: $body-size
|
||||
font-family: $family-sans-serif
|
||||
color: $body-color
|
||||
background-color: $background
|
||||
|
||||
html.modal-open
|
||||
|
@ -21,21 +15,12 @@ html.modal-open
|
|||
animation: fadeIn ease-in 1
|
||||
animation-fill-mode: forwards
|
||||
animation-duration: 1s
|
||||
|
||||
.fade-in.one
|
||||
animation-delay: 0.7s
|
||||
|
||||
.fade-in.two
|
||||
animation-delay: 1.4s
|
||||
|
||||
.fade-in.three
|
||||
animation-delay: 1.8s
|
||||
|
||||
.section
|
||||
background-color: $background
|
||||
|
||||
.hero
|
||||
background-color: $background
|
||||
&.one
|
||||
animation-delay: 0.7s
|
||||
&.two
|
||||
animation-delay: 1.4s
|
||||
&.three
|
||||
animation-delay: 1.8s
|
||||
|
||||
a
|
||||
color: $primary
|
||||
|
@ -45,21 +30,12 @@ a
|
|||
&:active
|
||||
color: $primary
|
||||
|
||||
h1, h2, .title, .subtitle
|
||||
color: $h-color
|
||||
|
||||
.title
|
||||
color: $h-color
|
||||
font-weight: 400
|
||||
|
||||
.subtitle
|
||||
color: $h-color
|
||||
|
||||
h1
|
||||
color: $h-color
|
||||
font-family: $title-stack
|
||||
|
||||
h2
|
||||
color: $h-color
|
||||
font-family: $title-stack
|
||||
|
||||
ul
|
||||
padding: 0
|
||||
|
||||
|
@ -80,6 +56,9 @@ hr
|
|||
border: none
|
||||
box-shadow: none
|
||||
|
||||
.hidden
|
||||
display: none
|
||||
|
||||
.img-responsive
|
||||
border-radius: 5px
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4)
|
||||
|
@ -100,23 +79,12 @@ hr
|
|||
font-size: 3rem
|
||||
text-align: center
|
||||
|
||||
.tagline
|
||||
font-size: 2.5rem
|
||||
@include mobile
|
||||
font-size: 1.5rem
|
||||
|
||||
.top-pad
|
||||
padding-top: 1rem
|
||||
|
||||
.bottom-pad
|
||||
padding-bottom: 1rem
|
||||
|
||||
.no-padding
|
||||
padding: 0
|
||||
|
||||
.no-padding-top
|
||||
padding-top: 0
|
||||
|
||||
.strong-post-title
|
||||
font-weight: $weight-bold
|
||||
|
||||
|
@ -137,31 +105,16 @@ hr
|
|||
vertical-align: baseline
|
||||
margin: 0 5px
|
||||
|
||||
.navbar
|
||||
background-color: $background
|
||||
|
||||
.navbar-burger
|
||||
margin-right: auto
|
||||
|
||||
.navbar-burger:hover
|
||||
background-color: $background
|
||||
background-color: $navbar-background-color
|
||||
|
||||
.navbar-item
|
||||
text-transform: uppercase
|
||||
font-size: 14px
|
||||
|
||||
a.navbar-item:hover
|
||||
color: $secondary
|
||||
|
||||
.expanding-menu
|
||||
ul
|
||||
list-style: none
|
||||
display: none
|
||||
|
||||
.expanding-menu:hover ul
|
||||
display: block
|
||||
transition: height 1s ease
|
||||
|
||||
.social-icons
|
||||
padding: 0 10px
|
||||
|
||||
|
@ -185,7 +138,6 @@ a.navbar-item:hover
|
|||
width: 70%
|
||||
margin: 0 auto
|
||||
text-align: center
|
||||
font-family: $h-color
|
||||
font-size: 1.5rem
|
||||
@include mobile
|
||||
width: 100%
|
||||
|
@ -204,9 +156,6 @@ a.navbar-item:hover
|
|||
background-color: $background
|
||||
font-size: 1.5rem
|
||||
|
||||
.hidden
|
||||
display: none
|
||||
|
||||
.markdown
|
||||
p
|
||||
margin-bottom: 1em
|
||||
|
@ -234,12 +183,8 @@ a.navbar-item:hover
|
|||
h6
|
||||
font-size: $size-6
|
||||
a
|
||||
color: $primary
|
||||
:hover
|
||||
&:hover
|
||||
color: $secondary
|
||||
font-style: none
|
||||
:active
|
||||
color: $primary
|
||||
ul
|
||||
margin-bottom: 1.25rem
|
||||
margin-left: 1.5em
|
||||
|
|
3
assets/sass/_fontawesome-import.sass
Normal file
3
assets/sass/_fontawesome-import.sass
Normal file
|
@ -0,0 +1,3 @@
|
|||
@import "../vendor/fontawesome-free/scss/fontawesome.scss"
|
||||
@import "../vendor/fontawesome-free/scss/fa-brands.scss"
|
||||
@import "../vendor/fontawesome-free/scss/fa-solid.scss"
|
|
@ -1,5 +1,3 @@
|
|||
$nunito-font-path: "/fonts/NunitoSans"
|
||||
|
||||
/* vietnamese */
|
||||
@font-face
|
||||
font-family: 'Nunito Sans'
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
{{ $themeStyle := .Site.Params.themeStyle | default "light" }}
|
||||
$fa-font-path: "/fonts/fontawesome-free/webfonts"
|
||||
$fa-font-path: {{ "/fonts/fontawesome-free/webfonts" | relURL }}
|
||||
$nunito-font-path: {{ "/fonts/NunitoSans" | relURL }}
|
||||
|
||||
@import "bulma-import"
|
||||
@import "../vendor/fontawesome-free/scss/fontawesome.scss"
|
||||
@import "../vendor/fontawesome-free/scss/fa-brands.scss"
|
||||
@import "../vendor/fontawesome-free/scss/fa-solid.scss"
|
||||
@import "fonts"
|
||||
@import "base-variables"
|
||||
@import "{{ $themeStyle }}-variables"
|
||||
@import "base-variables"
|
||||
@import "bulma-import"
|
||||
@import "fontawesome-import"
|
||||
@import "base"
|
||||
@import "{{ $themeStyle }}-style"
|
||||
|
|
|
@ -1,84 +1,92 @@
|
|||
baseURL = "https://example.org/" # Your domain name. Must end with "/"
|
||||
DefaultContentLanguage = "en"
|
||||
theme = "introduction"
|
||||
# disqusshortname = "" # Enable Disqus for comments https://gohugo.io/content-management/comments
|
||||
# googleAnalytics = "" # Enable Google Analytics https://gohugo.io/templates/internal/#google-analytics
|
||||
baseURL = "https://example.org/" # Your domain name. Must end with "/"
|
||||
theme = "introduction"
|
||||
DefaultContentLanguage = "en" # Default language for multilingual sites
|
||||
# disqusshortname = "" # https://gohugo.io/content-management/comments
|
||||
# googleAnalytics = "" # https://gohugo.io/templates/internal/#google-analytics
|
||||
|
||||
[params]
|
||||
introHeight = "large" # Input either 'medium' or 'large' or 'fullheight'
|
||||
themeStyle = "light" # Choose 'light' or 'dark'
|
||||
avatar = "img/profile.jpg" # Path to image in static folder eg. img/avatar.png, or comment out to remove
|
||||
email = "youremail@email.com" # Shows in contact section, or leave blank to omit
|
||||
localTime = true # Show your current local time in contact section
|
||||
timeZone = "America/Los_Angeles" # Your timezone as in the TZ* column of this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||
dateForm = "Jan 2, 2006"
|
||||
faviconFile = "img/fav.ico"
|
||||
fadeIn = true # Turn on/off the fade-in effect
|
||||
showRSSButton = true # Show rss button in navigation
|
||||
customCSS = [] # Include custom css files e.g. ["css/foo.css", "css/bar.css"]
|
||||
themeStyle = "light" # Choose "light" or "dark"
|
||||
favicon = "/img/fav.ico" # Path to favicon file
|
||||
showRSSButton = false # Show rss button in navigation
|
||||
fadeIn = true # Turn on/off the fade-in effect
|
||||
dateFormat = "Jan 2, 2006"
|
||||
email = "youremail@email.com" # E-mail address for contact section
|
||||
# customCSS = ["foo.css"] # Include custom css files placed under assets/
|
||||
|
||||
# Configure the home page
|
||||
[params.home]
|
||||
introHeight = "large" # Input either "medium" or "large" or "fullheight"
|
||||
showLatest = true # Show latest blog post summary
|
||||
showAllPosts = false # Set true to list all posts on home page, or set false to link to separate blog list page
|
||||
numberOfProjectsToShow = 3 # Maximum number of projects to show on home page. Unset or comment out to show all projects
|
||||
|
||||
localTime = true # Show your current local time in contact section
|
||||
timeZone = "America/Los_Angeles" # Your timezone as in the TZ* column of this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||
[params.projects]
|
||||
useTwoColumns = false # Use a layout with two columns instead of three
|
||||
|
||||
showAllPosts = false # Set 'true' to list all posts on home page, or set 'false' to link to separate blog list page
|
||||
showLatest = true # Show latest blog post summary
|
||||
# Share buttons on blog post pages
|
||||
shareButtons = true # Show "Share this:" social buttons
|
||||
shareTwitter = true
|
||||
shareFacebook = true
|
||||
sharePinterest = false
|
||||
shareGooglePlus = true
|
||||
[params.share]
|
||||
twitter = true
|
||||
facebook = true
|
||||
googlePlus = true
|
||||
pinterest = true
|
||||
|
||||
numberOfProjectsToShow = 3 # Maximum number of projects to show on home page. Unset or comment out to show all projects.
|
||||
|
||||
# Social icons appear in introduction and contact section. Add as many more as you like.
|
||||
# Find icon names here: http://fontawesome.io/cheatsheet/
|
||||
[[params.social]]
|
||||
url = "https://twitter.com/"
|
||||
icon = "twitter"
|
||||
[[params.social]]
|
||||
url = "https://facebook.com/"
|
||||
icon = "facebook-f"
|
||||
[[params.social]]
|
||||
url = "https://linkedin.com/"
|
||||
icon = "linkedin-in"
|
||||
# Social icons appear in introduction and contact section. Add as many more as you like.
|
||||
# Find icon names here: https://fontawesome.com/cheatsheet/
|
||||
[[params.social]]
|
||||
url = "https://twitter.com/"
|
||||
icon = "twitter"
|
||||
[[params.social]]
|
||||
url = "https://facebook.com/"
|
||||
icon = "facebook-f"
|
||||
[[params.social]]
|
||||
url = "https://linkedin.com/"
|
||||
icon = "linkedin-in"
|
||||
|
||||
# If you don't want to use the default menu, you can define one by yourself
|
||||
# [[menu.main]]
|
||||
# name = "Home"
|
||||
# url = "/"
|
||||
# weight = 0
|
||||
# name = "Home"
|
||||
# url = "/"
|
||||
# weight = 0
|
||||
# [[menu.main]]
|
||||
# name = "Blog"
|
||||
# url = "/blog"
|
||||
# weight = 1
|
||||
# name = "Blog"
|
||||
# url = "/blog/"
|
||||
# weight = 1
|
||||
|
||||
# We only use tag as a taxonomies
|
||||
# You can add more by yourself
|
||||
[taxonomies]
|
||||
tag = "tags"
|
||||
|
||||
[languages]
|
||||
[languages.en]
|
||||
languageName = "English"
|
||||
languageCode = "en-us"
|
||||
contentDir = "content/en"
|
||||
weight = 2
|
||||
title = "Introduction"
|
||||
firstName = "Hi, I'm Introduction" # First name shows in introduction on main page
|
||||
tagLine = "I'm a theme for Hugo." # Appears after the introduction
|
||||
description = "Website Description" # Max 160 characters show in search results
|
||||
footerText = "" # Text to override default footer text (markdown allowed)
|
||||
languageName = "English"
|
||||
languageCode = "en-us"
|
||||
contentDir = "content/en"
|
||||
weight = 0
|
||||
title = "Introduction"
|
||||
[languages.en.params]
|
||||
description = "Website Description" # Max 160 characters show in search results
|
||||
# footerText = "" # Text to override default footer text (markdown allowed)
|
||||
|
||||
[languages.es]
|
||||
languageName = "Español"
|
||||
languageCode = "es"
|
||||
contentDir = "content/es"
|
||||
weight = 1
|
||||
title = "Introducción"
|
||||
firstName = "Hola, Soy Introducción"
|
||||
tagLine = "Soy un tema para Hugo."
|
||||
description = "Descripcion del sitio web"
|
||||
footerText = ""
|
||||
languageName = "Español"
|
||||
languageCode = "es"
|
||||
contentDir = "content/es"
|
||||
weight = 1
|
||||
title = "Introducción"
|
||||
[languages.es.params]
|
||||
description = "Descripcion del sitio web"
|
||||
# footerText = ""
|
||||
|
||||
[languages.de]
|
||||
languageName = "Deutsch"
|
||||
languageCode = "de"
|
||||
contentDir = "content/de"
|
||||
weight = 0
|
||||
title = "Vorstellung"
|
||||
firstName = "Hallo, ich bin Vorstellung"
|
||||
tagLine = "Ich bin ein Hugo Theme"
|
||||
description = "Beschreibung der Webseite"
|
||||
footerText = ""
|
||||
dateForm = "2. January 2006"
|
||||
languageName = "Deutsch"
|
||||
languageCode = "de"
|
||||
contentDir = "content/de"
|
||||
weight = 2
|
||||
title = "Vorstellung"
|
||||
[languages.de.params]
|
||||
dateFormat = "2. January 2006"
|
||||
description = "Beschreibung der Webseite"
|
||||
# footerText = ""
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Kaffee Ipsum"
|
||||
date: 2017-11-01T12:04:16-05:00
|
||||
tags: ['coffee', 'ipsum','images']
|
||||
tags: ["coffee", "ipsum", "images"]
|
||||
---
|
||||
|
||||
Aromatic aroma con panna, crema so coffee robust coffee barista, café au lait trifecta that strong blue mountain cortado aftertaste. Aroma extraction french press, skinny sweet, blue mountain cup roast barista, beans, extra cappuccino mug crema strong. Americano caffeine white, con panna saucer sit, con panna eu, carajillo aftertaste kopi-luwak, body aftertaste cup single origin café au lait saucer. Macchiato java sweet arabica, turkish cup, eu flavour mug extraction white cortado saucer est white brewed instant, rich, barista breve cappuccino barista organic. Barista, beans extraction, barista mocha, roast steamed siphon cup sweet cortado, cinnamon froth milk ristretto cortado galão. Crema, milk extra brewed, lungo dripper, espresso flavour qui, variety, grinder caramelization sit, strong turkish espresso body, filter barista caramelization half and half strong. To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop. Latte instant black extra aroma, instant, extra robusta variety skinny shop aged cup ristretto foam cortado. Bar galão skinny saucer est affogato sugar caffeine chicory sugar coffee, seasonal barista french press acerbic in chicory robust.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Hipster Ipsum"
|
||||
date: 2017-11-13T11:58:39-05:00
|
||||
tags: ['ipsum','words']
|
||||
tags: ["ipsum", "words"]
|
||||
---
|
||||
|
||||
Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress. Street art umami tattooed, glossier selfies 90's kale chips cred cardigan taxidermy seitan distillery migas.
|
||||
|
@ -10,4 +10,4 @@ Chicharrones ethical activated charcoal cardigan vegan copper mug. Ennui messeng
|
|||
|
||||
Organic neutra brooklyn, literally helvetica air plant celiac chia sustainable sriracha. Jean shorts typewriter chambray 90's farm-to-table, man bun tofu VHS. Messenger bag paleo plaid meditation intelligentsia forage, lomo jianbing hell of. Waistcoat synth tacos direct trade truffaut kogi. Gentrify street art woke, everyday carry whatever gastropub PBR&B fixie chambray kale chips af photo booth shoreditch. Thundercats hella cold-pressed, ethical vape irony pitchfork mixtape kombucha heirloom viral hell of deep v banh mi hoodie. Craft beer slow-carb raw denim, ugh asymmetrical artisan banh mi fingerstache trust fund poke bespoke green juice man bun mustache 3 wolf moon.
|
||||
|
||||
Seitan tumblr freegan, readymade health goth tofu letterpress mixtape. Viral microdosing roof party, narwhal paleo photo booth cronut fingerstache. Bitters ramps snackwave listicle, taxidermy skateboard williamsburg. Vexillologist irony ennui, vegan fap 8-bit street art hashtag bicycle rights thundercats woke fashion axe aesthetic. Before they sold out umami forage disrupt, fashion axe cardigan ugh kitsch small batch. Kitsch try-hard vexillologist, semiotics disrupt shabby chic schlitz. Cardigan deep v hammock yuccie craft beer wayfarers, bespoke shabby chic keytar vape venmo semiotics iPhone cray.
|
||||
Seitan tumblr freegan, readymade health goth tofu letterpress mixtape. Viral microdosing roof party, narwhal paleo photo booth cronut fingerstache. Bitters ramps snackwave listicle, taxidermy skateboard williamsburg. Vexillologist irony ennui, vegan fap 8-bit street art hashtag bicycle rights thundercats woke fashion axe aesthetic. Before they sold out umami forage disrupt, fashion axe cardigan ugh kitsch small batch. Kitsch try-hard vexillologist, semiotics disrupt shabby chic schlitz. Cardigan deep v hammock yuccie craft beer wayfarers, bespoke shabby chic keytar vape venmo semiotics iPhone cray.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Startup Ipsum"
|
||||
date: 2017-11-06T12:04:06-05:00
|
||||
tags: ['code','ipsum','words']
|
||||
tags: ["code", "ipsum", "words"]
|
||||
---
|
||||
|
||||
SpaceTeam affordances quantitative vs. qualitative SpaceTeam physical computing earned media thinker-maker-doer pair programming. Bootstrapping pitch deck physical computing driven cortado human-centered design innovate human-centered design driven. Grok pitch deck fund pitch deck sticky note affordances minimum viable product integrate paradigm viral iterate. Driven fund thought leader personas workflow SpaceTeam viral pair programming physical computing intuitive 360 campaign latte bootstrapping minimum viable product. Bootstrapping physical computing responsive pitch deck SpaceTeam parallax long shadow pitch deck bootstrapping ideate.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: "Über mich"
|
||||
image: "profile.jpg"
|
||||
weight: 0
|
||||
---
|
||||
|
||||
Dies ist **Vorstellung**, ein minimales Webseiten Theme für [Hugo](https://gohugo.io)
|
6
exampleSite/content/de/home/index.md
Normal file
6
exampleSite/content/de/home/index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Hallo, ich bin Vorstellung"
|
||||
headless: true
|
||||
---
|
||||
|
||||
Ich bin ein Hugo Theme
|
6
exampleSite/content/de/home/lorem.md
Normal file
6
exampleSite/content/de/home/lorem.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Lorem Ipsum"
|
||||
weight: 1
|
||||
---
|
||||
|
||||
Weitere Abschnitte für die Hauptseiten können hinzugefügt werden, indem Datein unter `content/home/` erstellt werden.
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Coffee Ipsum"
|
||||
date: 2017-11-01T12:04:16-05:00
|
||||
tags: ['coffee', 'ipsum','images']
|
||||
tags: ["coffee", "ipsum", "images"]
|
||||
---
|
||||
|
||||
Aromatic aroma con panna, crema so coffee robust coffee barista, café au lait trifecta that strong blue mountain cortado aftertaste. Aroma extraction french press, skinny sweet, blue mountain cup roast barista, beans, extra cappuccino mug crema strong. Americano caffeine white, con panna saucer sit, con panna eu, carajillo aftertaste kopi-luwak, body aftertaste cup single origin café au lait saucer. Macchiato java sweet arabica, turkish cup, eu flavour mug extraction white cortado saucer est white brewed instant, rich, barista breve cappuccino barista organic. Barista, beans extraction, barista mocha, roast steamed siphon cup sweet cortado, cinnamon froth milk ristretto cortado galão. Crema, milk extra brewed, lungo dripper, espresso flavour qui, variety, grinder caramelization sit, strong turkish espresso body, filter barista caramelization half and half strong. To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop. Latte instant black extra aroma, instant, extra robusta variety skinny shop aged cup ristretto foam cortado. Bar galão skinny saucer est affogato sugar caffeine chicory sugar coffee, seasonal barista french press acerbic in chicory robust.
|
||||
|
@ -12,4 +12,4 @@ At, whipped extraction, wings, dark black, breve, single origin, est as irish, c
|
|||
|
||||
Barista at, whipped, brewed americano ut, black americano spoon crema, black carajillo, con panna, qui galão crema aged arabica. Cup half and half white, sugar, viennese, mocha to go single shot americano crema single origin sweet strong, pumpkin spice, flavour, rich steamed shop grinder steamed latte extra to go brewed. Frappuccino, variety a flavour rich, bar caffeine carajillo, caffeine, half and half brewed half and half that con panna single origin redeye. Roast percolator, beans kopi-luwak aftertaste ut, cup java, sweet, single origin affogato, eu espresso barista cortado trifecta ristretto to go aged cortado caramelization sweet. So variety wings sit roast acerbic a saucer, cream galão foam seasonal, instant, cinnamon beans macchiato mug steamed caffeine cappuccino. To go, frappuccino, body dripper aftertaste brewed spoon ristretto redeye, black dark, bar crema whipped wings macchiato, flavour, ut rich mocha variety filter aromatic. Ut instant single shot shop turkish and, grounds, latte half and half aged breve mug percolator shop. Macchiato, at cup single origin crema affogato, mug cup, eu et ristretto espresso, viennese froth beans variety to go. Coffee caffeine spoon, macchiato strong dripper crema, macchiato espresso blue mountain, chicory con panna white bar caffeine skinny trifecta con panna. Robust, mazagran latte to go, carajillo cinnamon at and trifecta, cream body variety instant id cream so extra. Ut as iced wings saucer caramelization, affogato, coffee, froth so, brewed acerbic iced shop in sweet brewed.
|
||||
|
||||
Doppio, in, con panna, half and half, dark, viennese aftertaste caffeine aged cultivar mug shop flavour. Spoon to go, doppio caffeine, a latte carajillo whipped, viennese grinder carajillo whipped dark grinder espresso coffee, espresso, variety café au lait aged half and half grounds. Mazagran as, kopi-luwak viennese, dark, sit aged id at, milk, to go cup sweet, shop coffee, spoon mazagran filter, doppio at extra cup milk. Chicory id roast chicory aromatic strong, white sweet viennese, carajillo java strong a to go aftertaste, frappuccino at cinnamon dripper pumpkin spice arabica. Aged, brewed percolator, id, macchiato aroma, black bar aromatic ristretto lungo as mug grinder as mocha. Mug, medium et roast doppio, spoon so single origin french press skinny, caffeine blue mountain variety, mocha, percolator grinder café au lait kopi-luwak arabica. Caffeine, seasonal, french press steamed rich single origin cream galão brewed cinnamon, doppio java, chicory aftertaste ristretto, plunger pot aromatic, ut, plunger pot milk est whipped grinder coffee. Sweet macchiato cappuccino cup, decaffeinated macchiato cream, milk extra, ut, galão froth half and half sweet qui, siphon, et aged, skinny, siphon milk grounds strong to go. Chicory medium, ut viennese instant fair trade steamed medium café au lait, as fair trade, barista single origin, body acerbic decaffeinated lungo café au lait bar trifecta americano mazagran. Strong cortado caffeine wings cappuccino foam, saucer est cream white aftertaste body french press. Beans affogato, ristretto a plunger pot bar macchiato, froth filter seasonal doppio, siphon sit caffeine cortado redeye single shot.
|
||||
Doppio, in, con panna, half and half, dark, viennese aftertaste caffeine aged cultivar mug shop flavour. Spoon to go, doppio caffeine, a latte carajillo whipped, viennese grinder carajillo whipped dark grinder espresso coffee, espresso, variety café au lait aged half and half grounds. Mazagran as, kopi-luwak viennese, dark, sit aged id at, milk, to go cup sweet, shop coffee, spoon mazagran filter, doppio at extra cup milk. Chicory id roast chicory aromatic strong, white sweet viennese, carajillo java strong a to go aftertaste, frappuccino at cinnamon dripper pumpkin spice arabica. Aged, brewed percolator, id, macchiato aroma, black bar aromatic ristretto lungo as mug grinder as mocha. Mug, medium et roast doppio, spoon so single origin french press skinny, caffeine blue mountain variety, mocha, percolator grinder café au lait kopi-luwak arabica. Caffeine, seasonal, french press steamed rich single origin cream galão brewed cinnamon, doppio java, chicory aftertaste ristretto, plunger pot aromatic, ut, plunger pot milk est whipped grinder coffee. Sweet macchiato cappuccino cup, decaffeinated macchiato cream, milk extra, ut, galão froth half and half sweet qui, siphon, et aged, skinny, siphon milk grounds strong to go. Chicory medium, ut viennese instant fair trade steamed medium café au lait, as fair trade, barista single origin, body acerbic decaffeinated lungo café au lait bar trifecta americano mazagran. Strong cortado caffeine wings cappuccino foam, saucer est cream white aftertaste body french press. Beans affogato, ristretto a plunger pot bar macchiato, froth filter seasonal doppio, siphon sit caffeine cortado redeye single shot.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Hipster Ipsum"
|
||||
date: 2017-11-13T11:58:39-05:00
|
||||
tags: ['ipsum','words']
|
||||
tags: ["ipsum", "words"]
|
||||
---
|
||||
|
||||
Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress. Street art umami tattooed, glossier selfies 90's kale chips cred cardigan taxidermy seitan distillery migas.
|
||||
|
@ -10,4 +10,4 @@ Chicharrones ethical activated charcoal cardigan vegan copper mug. Ennui messeng
|
|||
|
||||
Organic neutra brooklyn, literally helvetica air plant celiac chia sustainable sriracha. Jean shorts typewriter chambray 90's farm-to-table, man bun tofu VHS. Messenger bag paleo plaid meditation intelligentsia forage, lomo jianbing hell of. Waistcoat synth tacos direct trade truffaut kogi. Gentrify street art woke, everyday carry whatever gastropub PBR&B fixie chambray kale chips af photo booth shoreditch. Thundercats hella cold-pressed, ethical vape irony pitchfork mixtape kombucha heirloom viral hell of deep v banh mi hoodie. Craft beer slow-carb raw denim, ugh asymmetrical artisan banh mi fingerstache trust fund poke bespoke green juice man bun mustache 3 wolf moon.
|
||||
|
||||
Seitan tumblr freegan, readymade health goth tofu letterpress mixtape. Viral microdosing roof party, narwhal paleo photo booth cronut fingerstache. Bitters ramps snackwave listicle, taxidermy skateboard williamsburg. Vexillologist irony ennui, vegan fap 8-bit street art hashtag bicycle rights thundercats woke fashion axe aesthetic. Before they sold out umami forage disrupt, fashion axe cardigan ugh kitsch small batch. Kitsch try-hard vexillologist, semiotics disrupt shabby chic schlitz. Cardigan deep v hammock yuccie craft beer wayfarers, bespoke shabby chic keytar vape venmo semiotics iPhone cray.
|
||||
Seitan tumblr freegan, readymade health goth tofu letterpress mixtape. Viral microdosing roof party, narwhal paleo photo booth cronut fingerstache. Bitters ramps snackwave listicle, taxidermy skateboard williamsburg. Vexillologist irony ennui, vegan fap 8-bit street art hashtag bicycle rights thundercats woke fashion axe aesthetic. Before they sold out umami forage disrupt, fashion axe cardigan ugh kitsch small batch. Kitsch try-hard vexillologist, semiotics disrupt shabby chic schlitz. Cardigan deep v hammock yuccie craft beer wayfarers, bespoke shabby chic keytar vape venmo semiotics iPhone cray.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Startup Ipsum"
|
||||
date: 2017-11-06T12:04:06-05:00
|
||||
tags: ['code','ipsum','words']
|
||||
tags: ["code", "ipsum", "words"]
|
||||
---
|
||||
|
||||
SpaceTeam affordances quantitative vs. qualitative SpaceTeam physical computing earned media thinker-maker-doer pair programming. Bootstrapping pitch deck physical computing driven cortado human-centered design innovate human-centered design driven. Grok pitch deck fund pitch deck sticky note affordances minimum viable product integrate paradigm viral iterate. Driven fund thought leader personas workflow SpaceTeam viral pair programming physical computing intuitive 360 campaign latte bootstrapping minimum viable product. Bootstrapping physical computing responsive pitch deck SpaceTeam parallax long shadow pitch deck bootstrapping ideate.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: "About"
|
||||
image: "profile.jpg"
|
||||
weight: 0
|
||||
---
|
||||
|
||||
This is **Introduction**, a minimal scrolling website theme made for [Hugo](https://gohugo.io)
|
6
exampleSite/content/en/home/index.md
Normal file
6
exampleSite/content/en/home/index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Hi, I'm Introduction"
|
||||
headless: true
|
||||
---
|
||||
|
||||
I'm a theme for Hugo
|
6
exampleSite/content/en/home/lorem.md
Normal file
6
exampleSite/content/en/home/lorem.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Lorem Ipsum"
|
||||
weight: 1
|
||||
---
|
||||
|
||||
You can add more sections to the home page by adding file to `content/home/`
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Coffee Ipsum - Español"
|
||||
date: 2017-11-01T12:04:16-05:00
|
||||
tags: ['coffee', 'ipsum','images']
|
||||
tags: ["coffee", "ipsum", "images"]
|
||||
---
|
||||
|
||||
Aromatic aroma con panna, crema so coffee robust coffee barista, café au lait trifecta that strong blue mountain cortado aftertaste. Aroma extraction french press, skinny sweet, blue mountain cup roast barista, beans, extra cappuccino mug crema strong. Americano caffeine white, con panna saucer sit, con panna eu, carajillo aftertaste kopi-luwak, body aftertaste cup single origin café au lait saucer. Macchiato java sweet arabica, turkish cup, eu flavour mug extraction white cortado saucer est white brewed instant, rich, barista breve cappuccino barista organic. Barista, beans extraction, barista mocha, roast steamed siphon cup sweet cortado, cinnamon froth milk ristretto cortado galão. Crema, milk extra brewed, lungo dripper, espresso flavour qui, variety, grinder caramelization sit, strong turkish espresso body, filter barista caramelization half and half strong. To go viennese cream to go, flavour, so mocha as, carajillo iced et a siphon froth. Aged, eu, cup, brewed aroma kopi-luwak, coffee, id viennese french press brewed grounds acerbic froth. Decaffeinated acerbic, spoon beans seasonal, french press café au lait mazagran roast chicory, pumpkin spice galão as fair trade, dark irish cup ristretto half and half whipped shop. Latte instant black extra aroma, instant, extra robusta variety skinny shop aged cup ristretto foam cortado. Bar galão skinny saucer est affogato sugar caffeine chicory sugar coffee, seasonal barista french press acerbic in chicory robust.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Hipster Ipsum - Español"
|
||||
date: 2017-11-13T11:58:39-05:00
|
||||
tags: ['ipsum','words']
|
||||
tags: ["ipsum", "words"]
|
||||
---
|
||||
|
||||
Occupy mlkshk kale chips woke, listicle locavore next level fingerstache glossier aesthetic man braid before they sold out kitsch prism. Cred copper mug freegan, flannel YOLO single-origin coffee skateboard artisan four loko church-key man bun. Synth literally gastropub, kombucha chillwave helvetica offal truffaut church-key freegan pop-up gentrify narwhal. Kombucha viral vexillologist green juice. Slow-carb hoodie mumblecore tumeric tattooed meditation, lo-fi fap cred affogato forage whatever austin. Shabby chic direct trade migas, brunch gochujang sriracha chambray fanny pack 8-bit mustache letterpress. Street art umami tattooed, glossier selfies 90's kale chips cred cardigan taxidermy seitan distillery migas.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Startup Ipsum - Español"
|
||||
date: 2017-11-06T12:04:06-05:00
|
||||
tags: ['code','ipsum','words']
|
||||
tags: ["code", "ipsum", "words"]
|
||||
---
|
||||
|
||||
SpaceTeam affordances quantitative vs. qualitative SpaceTeam physical computing earned media thinker-maker-doer pair programming. Bootstrapping pitch deck physical computing driven cortado human-centered design innovate human-centered design driven. Grok pitch deck fund pitch deck sticky note affordances minimum viable product integrate paradigm viral iterate. Driven fund thought leader personas workflow SpaceTeam viral pair programming physical computing intuitive 360 campaign latte bootstrapping minimum viable product. Bootstrapping physical computing responsive pitch deck SpaceTeam parallax long shadow pitch deck bootstrapping ideate.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
title: "Sobre"
|
||||
image: "profile.jpg"
|
||||
weight: 0
|
||||
---
|
||||
|
||||
Esto es **Introducción**, un tema mínimo con desplazamiento para sitios web hechos con [Hugo](https://gohugo.io).
|
6
exampleSite/content/es/home/index.md
Normal file
6
exampleSite/content/es/home/index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Hola, Soy Introducción"
|
||||
headless: true
|
||||
---
|
||||
|
||||
Soy un tema para Hugo
|
6
exampleSite/content/es/home/lorem.md
Normal file
6
exampleSite/content/es/home/lorem.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Lorem Ipsum"
|
||||
weight: 1
|
||||
---
|
||||
|
||||
You can add more sections to the home page by adding file to `content/home/`
|
|
@ -1 +0,0 @@
|
|||
{"Target":"css/owlCarousel.min.b1f26e29c43c61fe8b5a6f225b4ee7c5f969a7b33cfe512706271e07246d93d1.css","MediaType":"text/css","Data":{"Integrity":"sha256-sfJuKcQ8Yf6LWm8iW07nxflpp7M8/lEnBiceByRtk9E="}}
|
|
@ -1 +0,0 @@
|
|||
{"Target":"css/owlCarousel.min.b1f26e29c43c61fe8b5a6f225b4ee7c5f969a7b33cfe512706271e07246d93d1.css","MediaType":"text/css","Data":{"Integrity":"sha256-sfJuKcQ8Yf6LWm8iW07nxflpp7M8/lEnBiceByRtk9E="}}
|
|
@ -0,0 +1 @@
|
|||
{"Target":"styles/owlCarousel.min.b1f26e29c43c61fe8b5a6f225b4ee7c5f969a7b33cfe512706271e07246d93d1.css","MediaType":"text/css","Data":{"Integrity":"sha256-sfJuKcQ8Yf6LWm8iW07nxflpp7M8/lEnBiceByRtk9E="}}
|
|
@ -1 +0,0 @@
|
|||
{"Target":"css/owlCarousel.min.b1f26e29c43c61fe8b5a6f225b4ee7c5f969a7b33cfe512706271e07246d93d1.css","MediaType":"text/css","Data":{"Integrity":"sha256-sfJuKcQ8Yf6LWm8iW07nxflpp7M8/lEnBiceByRtk9E="}}
|
|
@ -0,0 +1 @@
|
|||
{"Target":"styles/owlCarousel.min.b1f26e29c43c61fe8b5a6f225b4ee7c5f969a7b33cfe512706271e07246d93d1.css","MediaType":"text/css","Data":{"Integrity":"sha256-sfJuKcQ8Yf6LWm8iW07nxflpp7M8/lEnBiceByRtk9E="}}
|
|
@ -0,0 +1 @@
|
|||
{"Target":"styles/owlCarousel.min.b1f26e29c43c61fe8b5a6f225b4ee7c5f969a7b33cfe512706271e07246d93d1.css","MediaType":"text/css","Data":{"Integrity":"sha256-sfJuKcQ8Yf6LWm8iW07nxflpp7M8/lEnBiceByRtk9E="}}
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
{"Target":"js/bundle.1234609e6363cb2247099ce4cc4701ab8e722de386b18674fc5d19941697d812.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-EjRgnmNjyyJHCZzkzEcBq45yLeOGsYZ0/F0ZlBaX2BI="}}
|
||||
{"Target":"js/bundle.43be10f5b3a3e814bf07ce3fad76148fdd7184ea7b2e3f1d6b427828d24a56f2.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-Q74Q9bOj6BS/B84/rXYUj91xhOp7Lj8da0J4KNJKVvI="}}
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
{"Target":"js/bundleMoment.c0c2eddd62b0f9719cad4bf88dc2cf9a1b24cb979da336a28e71733aec00a9b2.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-wMLt3WKw+XGcrUv4jcLPmhsky5edozaijnFzOuwAqbI="}}
|
||||
{"Target":"js/bundleMoment.6d57a5711d10d4a2fa0d6c1ce0c0ce16ed263a85b195485a43b490f1badcaca4.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-bVelcR0Q1KL6DWwc4MDOFu0mOoWxlUhaQ7SQ8brcrKQ="}}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
|||
{"Target":"js/bundleOwlCarousel.cba358484a4a50bbc9c265ab71727cbcd15381bbb8cecdbcba357cb629f4e9c4.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-y6NYSEpKULvJwmWrcXJ8vNFTgbu4zs28ujV8tin06cQ="}}
|
|
@ -1,2 +0,0 @@
|
|||
$('a[href^="#"]').click(function(e){e.preventDefault();$('html, body').animate({scrollTop:$(this.hash).offset().top},500);$("#nav-menu").removeClass("is-active");return true;})
|
||||
$('.card').click(function(){$($(this).attr('data-target')).addClass('is-active');$("html").addClass("modal-open");});$('.modal-close').click(function(){$($(this).attr('data-target')).removeClass('is-active');$("html").removeClass("modal-open");});$(document).keypress(function(e){if(e.which==0){$('.modal.is-active').removeClass('is-active');}});
|
|
@ -1 +0,0 @@
|
|||
{"Target":"js/index.tmp.min.css","MediaType":"application/javascript","Data":{}}
|
|
@ -0,0 +1,2 @@
|
|||
document.addEventListener('DOMContentLoaded',function(){var $navbarBurgers=Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'),0);if($navbarBurgers.length>0){$navbarBurgers.forEach(function($el){$el.addEventListener('click',function(){var target=$el.dataset.target;var $target=document.getElementById(target);$el.classList.toggle('is-active');$target.classList.toggle('is-active');});});}});$('a[href^="#"]').click(function(e){e.preventDefault();$('html, body').animate({scrollTop:$(this.hash).offset().top},500);$("#nav-menu").removeClass("is-active");return true;})
|
||||
$('.card').click(function(){$($(this).attr('data-target')).addClass('is-active');$("html").addClass("modal-open");});$('.modal-close').click(function(){$($(this).attr('data-target')).removeClass('is-active');$("html").removeClass("modal-open");});$(document).keypress(function(e){if(e.which==0){$('.modal.is-active').removeClass('is-active');$("html").removeClass("modal-open");}});
|
|
@ -0,0 +1 @@
|
|||
{"Target":"js/index.min.js","MediaType":"application/javascript","Data":{}}
|
|
@ -0,0 +1,4 @@
|
|||
$(document).ready(function() {
|
||||
var time = moment().tz("America/Los_Angeles").format("h:mm A");
|
||||
$('#time').html(time);
|
||||
})
|
|
@ -0,0 +1 @@
|
|||
{"Target":"js/initMoment.tmp.js","MediaType":"application/javascript","Data":{}}
|
|
@ -0,0 +1 @@
|
|||
$(document).ready(function(){$(".owl-carousel").owlCarousel({loop:true,nav:true,margin:10,items:1,autoHeight:true});});
|
|
@ -0,0 +1 @@
|
|||
{"Target":"js/initOwlCarousel.min.js","MediaType":"application/javascript","Data":{}}
|
|
@ -1 +0,0 @@
|
|||
{"Target":"vendor/owlCarousel/owl.carousel.min.a53c43f834b32309b084ea9314df8307e9c78cee2202c6e07f216ae4ae5b704d.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-pTxD+DSzIwmwhOqTFN+DB+nHjO4iAsbgfyFq5K5bcE0="}}
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
{"Target":"js/bundle.1234609e6363cb2247099ce4cc4701ab8e722de386b18674fc5d19941697d812.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-EjRgnmNjyyJHCZzkzEcBq45yLeOGsYZ0/F0ZlBaX2BI="}}
|
||||
{"Target":"js/bundle.43be10f5b3a3e814bf07ce3fad76148fdd7184ea7b2e3f1d6b427828d24a56f2.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-Q74Q9bOj6BS/B84/rXYUj91xhOp7Lj8da0J4KNJKVvI="}}
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
{"Target":"js/bundleMoment.c0c2eddd62b0f9719cad4bf88dc2cf9a1b24cb979da336a28e71733aec00a9b2.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-wMLt3WKw+XGcrUv4jcLPmhsky5edozaijnFzOuwAqbI="}}
|
||||
{"Target":"js/bundleMoment.6d57a5711d10d4a2fa0d6c1ce0c0ce16ed263a85b195485a43b490f1badcaca4.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-bVelcR0Q1KL6DWwc4MDOFu0mOoWxlUhaQ7SQ8brcrKQ="}}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
|||
{"Target":"js/bundleOwlCarousel.cba358484a4a50bbc9c265ab71727cbcd15381bbb8cecdbcba357cb629f4e9c4.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-y6NYSEpKULvJwmWrcXJ8vNFTgbu4zs28ujV8tin06cQ="}}
|
|
@ -1,2 +0,0 @@
|
|||
$('a[href^="#"]').click(function(e){e.preventDefault();$('html, body').animate({scrollTop:$(this.hash).offset().top},500);$("#nav-menu").removeClass("is-active");return true;})
|
||||
$('.card').click(function(){$($(this).attr('data-target')).addClass('is-active');$("html").addClass("modal-open");});$('.modal-close').click(function(){$($(this).attr('data-target')).removeClass('is-active');$("html").removeClass("modal-open");});$(document).keypress(function(e){if(e.which==0){$('.modal.is-active').removeClass('is-active');}});
|
|
@ -1 +0,0 @@
|
|||
{"Target":"js/index.tmp.min.css","MediaType":"application/javascript","Data":{}}
|
|
@ -0,0 +1,2 @@
|
|||
document.addEventListener('DOMContentLoaded',function(){var $navbarBurgers=Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'),0);if($navbarBurgers.length>0){$navbarBurgers.forEach(function($el){$el.addEventListener('click',function(){var target=$el.dataset.target;var $target=document.getElementById(target);$el.classList.toggle('is-active');$target.classList.toggle('is-active');});});}});$('a[href^="#"]').click(function(e){e.preventDefault();$('html, body').animate({scrollTop:$(this.hash).offset().top},500);$("#nav-menu").removeClass("is-active");return true;})
|
||||
$('.card').click(function(){$($(this).attr('data-target')).addClass('is-active');$("html").addClass("modal-open");});$('.modal-close').click(function(){$($(this).attr('data-target')).removeClass('is-active');$("html").removeClass("modal-open");});$(document).keypress(function(e){if(e.which==0){$('.modal.is-active').removeClass('is-active');$("html").removeClass("modal-open");}});
|
|
@ -0,0 +1 @@
|
|||
{"Target":"js/index.min.js","MediaType":"application/javascript","Data":{}}
|
|
@ -0,0 +1,4 @@
|
|||
$(document).ready(function() {
|
||||
var time = moment().tz("America/Los_Angeles").format("h:mm A");
|
||||
$('#time').html(time);
|
||||
})
|
|
@ -0,0 +1 @@
|
|||
{"Target":"js/initMoment.tmp.js","MediaType":"application/javascript","Data":{}}
|
|
@ -0,0 +1 @@
|
|||
$(document).ready(function(){$(".owl-carousel").owlCarousel({loop:true,nav:true,margin:10,items:1,autoHeight:true});});
|
|
@ -0,0 +1 @@
|
|||
{"Target":"js/initOwlCarousel.min.js","MediaType":"application/javascript","Data":{}}
|
|
@ -1 +0,0 @@
|
|||
{"Target":"vendor/owlCarousel/owl.carousel.min.a53c43f834b32309b084ea9314df8307e9c78cee2202c6e07f216ae4ae5b704d.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-pTxD+DSzIwmwhOqTFN+DB+nHjO4iAsbgfyFq5K5bcE0="}}
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
{"Target":"js/bundle.1234609e6363cb2247099ce4cc4701ab8e722de386b18674fc5d19941697d812.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-EjRgnmNjyyJHCZzkzEcBq45yLeOGsYZ0/F0ZlBaX2BI="}}
|
||||
{"Target":"js/bundle.43be10f5b3a3e814bf07ce3fad76148fdd7184ea7b2e3f1d6b427828d24a56f2.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-Q74Q9bOj6BS/B84/rXYUj91xhOp7Lj8da0J4KNJKVvI="}}
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
{"Target":"js/bundleMoment.c0c2eddd62b0f9719cad4bf88dc2cf9a1b24cb979da336a28e71733aec00a9b2.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-wMLt3WKw+XGcrUv4jcLPmhsky5edozaijnFzOuwAqbI="}}
|
||||
{"Target":"js/bundleMoment.6d57a5711d10d4a2fa0d6c1ce0c0ce16ed263a85b195485a43b490f1badcaca4.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-bVelcR0Q1KL6DWwc4MDOFu0mOoWxlUhaQ7SQ8brcrKQ="}}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
|||
{"Target":"js/bundleOwlCarousel.cba358484a4a50bbc9c265ab71727cbcd15381bbb8cecdbcba357cb629f4e9c4.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-y6NYSEpKULvJwmWrcXJ8vNFTgbu4zs28ujV8tin06cQ="}}
|
|
@ -1,2 +0,0 @@
|
|||
$('a[href^="#"]').click(function(e){e.preventDefault();$('html, body').animate({scrollTop:$(this.hash).offset().top},500);$("#nav-menu").removeClass("is-active");return true;})
|
||||
$('.card').click(function(){$($(this).attr('data-target')).addClass('is-active');$("html").addClass("modal-open");});$('.modal-close').click(function(){$($(this).attr('data-target')).removeClass('is-active');$("html").removeClass("modal-open");});$(document).keypress(function(e){if(e.which==0){$('.modal.is-active').removeClass('is-active');}});
|
|
@ -1 +0,0 @@
|
|||
{"Target":"js/index.tmp.min.css","MediaType":"application/javascript","Data":{}}
|
|
@ -0,0 +1,2 @@
|
|||
document.addEventListener('DOMContentLoaded',function(){var $navbarBurgers=Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'),0);if($navbarBurgers.length>0){$navbarBurgers.forEach(function($el){$el.addEventListener('click',function(){var target=$el.dataset.target;var $target=document.getElementById(target);$el.classList.toggle('is-active');$target.classList.toggle('is-active');});});}});$('a[href^="#"]').click(function(e){e.preventDefault();$('html, body').animate({scrollTop:$(this.hash).offset().top},500);$("#nav-menu").removeClass("is-active");return true;})
|
||||
$('.card').click(function(){$($(this).attr('data-target')).addClass('is-active');$("html").addClass("modal-open");});$('.modal-close').click(function(){$($(this).attr('data-target')).removeClass('is-active');$("html").removeClass("modal-open");});$(document).keypress(function(e){if(e.which==0){$('.modal.is-active').removeClass('is-active');$("html").removeClass("modal-open");}});
|
|
@ -0,0 +1 @@
|
|||
{"Target":"js/index.min.js","MediaType":"application/javascript","Data":{}}
|
|
@ -0,0 +1,4 @@
|
|||
$(document).ready(function() {
|
||||
var time = moment().tz("America/Los_Angeles").format("h:mm A");
|
||||
$('#time').html(time);
|
||||
})
|
|
@ -0,0 +1 @@
|
|||
{"Target":"js/initMoment.tmp.js","MediaType":"application/javascript","Data":{}}
|
|
@ -0,0 +1 @@
|
|||
$(document).ready(function(){$(".owl-carousel").owlCarousel({loop:true,nav:true,margin:10,items:1,autoHeight:true});});
|
|
@ -0,0 +1 @@
|
|||
{"Target":"js/initOwlCarousel.min.js","MediaType":"application/javascript","Data":{}}
|
|
@ -1 +0,0 @@
|
|||
{"Target":"vendor/owlCarousel/owl.carousel.min.a53c43f834b32309b084ea9314df8307e9c78cee2202c6e07f216ae4ae5b704d.js","MediaType":"application/javascript","Data":{"Integrity":"sha256-pTxD+DSzIwmwhOqTFN+DB+nHjO4iAsbgfyFq5K5bcE0="}}
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
|||
{"Target":"styles/main.min.84c42c7a3665b49259fb9858108552fbc0d7063a0c7f98634800c3d8e760abd7.css","MediaType":"text/css","Data":{"Integrity":"sha256-hMQsejZltJJZ+5hYEIVS+8DXBjoMf5hjSADD2Odgq9c="}}
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1 @@
|
|||
{"Target":"styles/main.css","MediaType":"text/css","Data":{}}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
|||
{"Target":"styles/main.min.88e4a525bef0c5911f208d47535e56f02a7e2658dd19eaab52840dde669f1dd3.css","MediaType":"text/css","Data":{"Integrity":"sha256-iOSlJb7wxZEfII1HU15W8Cp+JljdGeqrUoQN3mafHdM="}}
|
File diff suppressed because one or more lines are too long
|
@ -1 +0,0 @@
|
|||
{"Target":"styles/main.min.84c42c7a3665b49259fb9858108552fbc0d7063a0c7f98634800c3d8e760abd7.css","MediaType":"text/css","Data":{"Integrity":"sha256-hMQsejZltJJZ+5hYEIVS+8DXBjoMf5hjSADD2Odgq9c="}}
|
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1 @@
|
|||
{"Target":"styles/main.css","MediaType":"text/css","Data":{}}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
|||
{"Target":"styles/main.min.88e4a525bef0c5911f208d47535e56f02a7e2658dd19eaab52840dde669f1dd3.css","MediaType":"text/css","Data":{"Integrity":"sha256-iOSlJb7wxZEfII1HU15W8Cp+JljdGeqrUoQN3mafHdM="}}
|
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue