mirror of
https://github.com/skoobasteeve/rayandgwen-wedding.git
synced 2026-03-20 06:58:56 +00:00
Initial build, layout and pages
This commit is contained in:
29
.gitignore
vendored
Normal file
29
.gitignore
vendored
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# Vim
|
||||||
|
*~
|
||||||
|
*.sw[p_]
|
||||||
|
|
||||||
|
# Sublime Text
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# Ruby Gem
|
||||||
|
*.gem
|
||||||
|
.bundle
|
||||||
|
Gemfile.lock
|
||||||
|
**/vendor/bundle
|
||||||
|
|
||||||
|
# Node.js and NPM
|
||||||
|
node_modules
|
||||||
|
npm-debug.log*
|
||||||
|
package-lock.json
|
||||||
|
codekit-config.json
|
||||||
|
|
||||||
|
# macOS
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Jekyll generated files
|
||||||
|
.jekyll-cache
|
||||||
|
.jekyll-metadata
|
||||||
|
.sass-cache
|
||||||
|
_asset_bundler_cache
|
||||||
|
_site
|
||||||
28
Gemfile
Normal file
28
Gemfile
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
# Hello! This is where you manage which Jekyll version is used to run.
|
||||||
|
# When you want to use a different version, change it below, save the
|
||||||
|
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
|
||||||
|
#
|
||||||
|
# bundle exec jekyll serve
|
||||||
|
#
|
||||||
|
# This will help ensure the proper Jekyll version is running.
|
||||||
|
# Happy Jekylling!
|
||||||
|
|
||||||
|
# gem "github-pages", group: :jekyll_plugins
|
||||||
|
|
||||||
|
# To upgrade, run `bundle update`.
|
||||||
|
|
||||||
|
gem "jekyll"
|
||||||
|
gem "minimal-mistakes-jekyll"
|
||||||
|
|
||||||
|
# The following plugins are automatically loaded by the theme-gem:
|
||||||
|
# gem "jekyll-paginate"
|
||||||
|
# gem "jekyll-sitemap"
|
||||||
|
# gem "jekyll-gist"
|
||||||
|
# gem "jekyll-feed"
|
||||||
|
# gem "jekyll-include-cache"
|
||||||
|
#
|
||||||
|
# If you have any other plugins, put them here!
|
||||||
|
group :jekyll_plugins do
|
||||||
|
end
|
||||||
278
_config.yml
Normal file
278
_config.yml
Normal file
@@ -0,0 +1,278 @@
|
|||||||
|
# Welcome to Jekyll!
|
||||||
|
#
|
||||||
|
# This config file is meant for settings that affect your entire site, values
|
||||||
|
# which you are expected to set up once and rarely need to edit after that.
|
||||||
|
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
||||||
|
# `jekyll serve`. If you change this file, please restart the server process.
|
||||||
|
|
||||||
|
# Theme Settings
|
||||||
|
#
|
||||||
|
# Review documentation to determine if you should use `theme` or `remote_theme`
|
||||||
|
# https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/#installing-the-theme
|
||||||
|
|
||||||
|
theme : "minimal-mistakes-jekyll"
|
||||||
|
# remote_theme : "mmistakes/minimal-mistakes"
|
||||||
|
minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"
|
||||||
|
|
||||||
|
# Site Settings
|
||||||
|
locale : "en-US"
|
||||||
|
title : "Ray and Gwen's NYC Wedding"
|
||||||
|
title_separator : "-"
|
||||||
|
subtitle : # site tagline that appears below site title in masthead
|
||||||
|
name : "Ray Lyon"
|
||||||
|
description : "Ray and Gwen's 2021 Wedding Site"
|
||||||
|
url : # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
|
||||||
|
baseurl : # the subpath of your site, e.g. "/blog"
|
||||||
|
repository : "skoobasteeve/rayandgwen-wedding"
|
||||||
|
teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png"
|
||||||
|
logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
|
||||||
|
masthead_title : # overrides the website title displayed in the masthead, use " " for no title
|
||||||
|
# breadcrumbs : false # true, false (default)
|
||||||
|
words_per_minute : 200
|
||||||
|
comments:
|
||||||
|
provider : # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "custom"
|
||||||
|
disqus:
|
||||||
|
shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-
|
||||||
|
discourse:
|
||||||
|
server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org
|
||||||
|
facebook:
|
||||||
|
# https://developers.facebook.com/docs/plugins/comments
|
||||||
|
appid :
|
||||||
|
num_posts : # 5 (default)
|
||||||
|
colorscheme : # "light" (default), "dark"
|
||||||
|
utterances:
|
||||||
|
theme : # "github-light" (default), "github-dark"
|
||||||
|
issue_term : # "pathname" (default)
|
||||||
|
staticman:
|
||||||
|
branch : # "master"
|
||||||
|
endpoint : # "https://{your Staticman v3 API}/v3/entry/github/"
|
||||||
|
reCaptcha:
|
||||||
|
siteKey :
|
||||||
|
secret :
|
||||||
|
atom_feed:
|
||||||
|
path : # blank (default) uses feed.xml
|
||||||
|
search : # true, false (default)
|
||||||
|
search_full_content : # true, false (default)
|
||||||
|
search_provider : # lunr (default), algolia, google
|
||||||
|
algolia:
|
||||||
|
application_id : # YOUR_APPLICATION_ID
|
||||||
|
index_name : # YOUR_INDEX_NAME
|
||||||
|
search_only_api_key : # YOUR_SEARCH_ONLY_API_KEY
|
||||||
|
powered_by : # true (default), false
|
||||||
|
google:
|
||||||
|
search_engine_id : # YOUR_SEARCH_ENGINE_ID
|
||||||
|
instant_search : # false (default), true
|
||||||
|
# SEO Related
|
||||||
|
google_site_verification :
|
||||||
|
bing_site_verification :
|
||||||
|
yandex_site_verification :
|
||||||
|
naver_site_verification :
|
||||||
|
|
||||||
|
# Social Sharing
|
||||||
|
twitter:
|
||||||
|
username :
|
||||||
|
facebook:
|
||||||
|
username :
|
||||||
|
app_id :
|
||||||
|
publisher :
|
||||||
|
og_image : /assets/images/feature-image-01.jpg
|
||||||
|
# For specifying social profiles
|
||||||
|
# - https://developers.google.com/structured-data/customize/social-profiles
|
||||||
|
social:
|
||||||
|
type : # Person or Organization (defaults to Person)
|
||||||
|
name : # If the user or organization name differs from the site's name
|
||||||
|
links: # An array of links to social media profiles
|
||||||
|
|
||||||
|
# Analytics
|
||||||
|
analytics:
|
||||||
|
provider : false # false (default), "google", "google-universal", "google-gtag", "custom"
|
||||||
|
google:
|
||||||
|
tracking_id :
|
||||||
|
anonymize_ip : # true, false (default)
|
||||||
|
|
||||||
|
|
||||||
|
# Site Author
|
||||||
|
author:
|
||||||
|
name : "Your Name"
|
||||||
|
avatar : # path of avatar image, e.g. "/assets/images/bio-photo.jpg"
|
||||||
|
bio : "I am an **amazing** person."
|
||||||
|
location : "Somewhere"
|
||||||
|
email :
|
||||||
|
links:
|
||||||
|
- label: "Email"
|
||||||
|
icon: "fas fa-fw fa-envelope-square"
|
||||||
|
# url: "mailto:your.name@email.com"
|
||||||
|
- label: "Website"
|
||||||
|
icon: "fas fa-fw fa-link"
|
||||||
|
# url: "https://your-website.com"
|
||||||
|
- label: "Twitter"
|
||||||
|
icon: "fab fa-fw fa-twitter-square"
|
||||||
|
# url: "https://twitter.com/"
|
||||||
|
- label: "Facebook"
|
||||||
|
icon: "fab fa-fw fa-facebook-square"
|
||||||
|
# url: "https://facebook.com/"
|
||||||
|
- label: "GitHub"
|
||||||
|
icon: "fab fa-fw fa-github"
|
||||||
|
# url: "https://github.com/"
|
||||||
|
- label: "Instagram"
|
||||||
|
icon: "fab fa-fw fa-instagram"
|
||||||
|
# url: "https://instagram.com/"
|
||||||
|
|
||||||
|
# Site Footer
|
||||||
|
footer:
|
||||||
|
links:
|
||||||
|
- label: "Twitter"
|
||||||
|
icon: "fab fa-fw fa-twitter-square"
|
||||||
|
# url:
|
||||||
|
- label: "Facebook"
|
||||||
|
icon: "fab fa-fw fa-facebook-square"
|
||||||
|
# url:
|
||||||
|
- label: "GitHub"
|
||||||
|
icon: "fab fa-fw fa-github"
|
||||||
|
url: "https://github.com/skoobasteeve/rayandgwen-wedding"
|
||||||
|
- label: "GitLab"
|
||||||
|
icon: "fab fa-fw fa-gitlab"
|
||||||
|
# url:
|
||||||
|
- label: "Bitbucket"
|
||||||
|
icon: "fab fa-fw fa-bitbucket"
|
||||||
|
# url:
|
||||||
|
- label: "Instagram"
|
||||||
|
icon: "fab fa-fw fa-instagram"
|
||||||
|
# url:
|
||||||
|
|
||||||
|
|
||||||
|
# Reading Files
|
||||||
|
include:
|
||||||
|
- .htaccess
|
||||||
|
- _pages
|
||||||
|
exclude:
|
||||||
|
- "*.sublime-project"
|
||||||
|
- "*.sublime-workspace"
|
||||||
|
- vendor
|
||||||
|
- .asset-cache
|
||||||
|
- .bundle
|
||||||
|
- .jekyll-assets-cache
|
||||||
|
- .sass-cache
|
||||||
|
- assets/js/plugins
|
||||||
|
- assets/js/_main.js
|
||||||
|
- assets/js/vendor
|
||||||
|
- Capfile
|
||||||
|
- CHANGELOG
|
||||||
|
- config
|
||||||
|
- Gemfile
|
||||||
|
- Gruntfile.js
|
||||||
|
- gulpfile.js
|
||||||
|
- LICENSE
|
||||||
|
- log
|
||||||
|
- node_modules
|
||||||
|
- package.json
|
||||||
|
- package-lock.json
|
||||||
|
- Rakefile
|
||||||
|
- README
|
||||||
|
- tmp
|
||||||
|
- /docs # ignore Minimal Mistakes /docs
|
||||||
|
- /test # ignore Minimal Mistakes /test
|
||||||
|
keep_files:
|
||||||
|
- .git
|
||||||
|
- .svn
|
||||||
|
encoding: "utf-8"
|
||||||
|
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
|
||||||
|
|
||||||
|
|
||||||
|
# Conversion
|
||||||
|
markdown: kramdown
|
||||||
|
highlighter: rouge
|
||||||
|
lsi: false
|
||||||
|
excerpt_separator: "\n\n"
|
||||||
|
incremental: false
|
||||||
|
|
||||||
|
|
||||||
|
# Markdown Processing
|
||||||
|
kramdown:
|
||||||
|
input: GFM
|
||||||
|
hard_wrap: false
|
||||||
|
auto_ids: true
|
||||||
|
footnote_nr: 1
|
||||||
|
entity_output: as_char
|
||||||
|
toc_levels: 1..6
|
||||||
|
smart_quotes: lsquo,rsquo,ldquo,rdquo
|
||||||
|
enable_coderay: false
|
||||||
|
|
||||||
|
|
||||||
|
# Sass/SCSS
|
||||||
|
sass:
|
||||||
|
sass_dir: _sass
|
||||||
|
style: compressed # https://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
|
||||||
|
|
||||||
|
|
||||||
|
# Outputting
|
||||||
|
permalink: /:categories/:title/
|
||||||
|
timezone: America/New_York
|
||||||
|
|
||||||
|
|
||||||
|
# Plugins (previously gems:)
|
||||||
|
plugins:
|
||||||
|
- jekyll-sitemap
|
||||||
|
- jekyll-gist
|
||||||
|
- jekyll-feed
|
||||||
|
- jekyll-include-cache
|
||||||
|
|
||||||
|
# mimic GitHub Pages with --safe
|
||||||
|
whitelist:
|
||||||
|
- jekyll-paginate
|
||||||
|
- jekyll-sitemap
|
||||||
|
- jekyll-gist
|
||||||
|
- jekyll-feed
|
||||||
|
- jekyll-include-cache
|
||||||
|
|
||||||
|
|
||||||
|
# Archives
|
||||||
|
# Type
|
||||||
|
# - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default)
|
||||||
|
# - Jekyll Archives plugin archive pages ~> type: jekyll-archives
|
||||||
|
# Path (examples)
|
||||||
|
# - Archive page should exist at path when using Liquid method or you can
|
||||||
|
# expect broken links (especially with breadcrumbs enabled)
|
||||||
|
# - <base_path>/tags/my-awesome-tag/index.html ~> path: /tags/
|
||||||
|
# - <base_path>/categories/my-awesome-category/index.html ~> path: /categories/
|
||||||
|
# - <base_path>/my-awesome-category/index.html ~> path: /
|
||||||
|
category_archive:
|
||||||
|
type: liquid
|
||||||
|
path: /categories/
|
||||||
|
tag_archive:
|
||||||
|
type: liquid
|
||||||
|
path: /tags/
|
||||||
|
# https://github.com/jekyll/jekyll-archives
|
||||||
|
# jekyll-archives:
|
||||||
|
# enabled:
|
||||||
|
# - categories
|
||||||
|
# - tags
|
||||||
|
# layouts:
|
||||||
|
# category: archive-taxonomy
|
||||||
|
# tag: archive-taxonomy
|
||||||
|
# permalinks:
|
||||||
|
# category: /categories/:name/
|
||||||
|
# tag: /tags/:name/
|
||||||
|
|
||||||
|
|
||||||
|
# HTML Compression
|
||||||
|
# - https://jch.penibelst.de/
|
||||||
|
compress_html:
|
||||||
|
clippings: all
|
||||||
|
ignore:
|
||||||
|
envs: development
|
||||||
|
|
||||||
|
|
||||||
|
# Defaults
|
||||||
|
defaults:
|
||||||
|
# _posts
|
||||||
|
- scope:
|
||||||
|
path: ""
|
||||||
|
type: posts
|
||||||
|
values:
|
||||||
|
layout: single
|
||||||
|
author_profile: true
|
||||||
|
read_time: true
|
||||||
|
comments: # true
|
||||||
|
share: true
|
||||||
|
related: true
|
||||||
44
_layouts/default.html
Normal file
44
_layouts/default.html
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
---
|
||||||
|
---
|
||||||
|
|
||||||
|
<!doctype html>
|
||||||
|
<!--
|
||||||
|
Minimal Mistakes Jekyll Theme 4.20.2 by Michael Rose
|
||||||
|
Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
|
||||||
|
Free for personal and commercial use under the MIT license
|
||||||
|
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
|
||||||
|
-->
|
||||||
|
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
|
||||||
|
<head>
|
||||||
|
{% include head.html %}
|
||||||
|
{% include head/custom.html %}
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
|
||||||
|
{% include_cached skip-links.html %}
|
||||||
|
{% include_cached browser-upgrade.html %}
|
||||||
|
{% unless page.masthead == false %}
|
||||||
|
{% include_cached masthead.html %}
|
||||||
|
{% endunless %}
|
||||||
|
|
||||||
|
<div class="initial-content">
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% if site.search == true %}
|
||||||
|
<div class="search-content">
|
||||||
|
{% include_cached search/search_form.html %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div id="footer" class="page__footer">
|
||||||
|
<footer>
|
||||||
|
{% include footer/custom.html %}
|
||||||
|
{% include_cached footer.html %}
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% include scripts.html %}
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
11
_pages/info.md
Normal file
11
_pages/info.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
title: "Ray and Gwen's 2021 Wedding Exxtravaganza!"
|
||||||
|
layout: splash
|
||||||
|
permalink: /info/
|
||||||
|
author_profile: false
|
||||||
|
masthead: false
|
||||||
|
header:
|
||||||
|
overlay_color: "#000"
|
||||||
|
overlay_filter: "0.5"
|
||||||
|
overlay_image: /assets/images/banner.jpg
|
||||||
|
---
|
||||||
13
_pages/registry.md
Normal file
13
_pages/registry.md
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
title: "Ray and Gwen's 2021 Wedding Exxtravaganza!"
|
||||||
|
layout: splash
|
||||||
|
permalink: /registry/
|
||||||
|
author_profile: false
|
||||||
|
masthead: false
|
||||||
|
header:
|
||||||
|
overlay_color: "#000"
|
||||||
|
overlay_filter: "0.5"
|
||||||
|
overlay_image: /assets/images/banner.jpg
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
11
_pages/rsvp.md
Normal file
11
_pages/rsvp.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
title: "Ray and Gwen's 2021 Wedding Exxtravaganza!"
|
||||||
|
layout: splash
|
||||||
|
permalink: /rsvp/
|
||||||
|
author_profile: false
|
||||||
|
masthead: false
|
||||||
|
header:
|
||||||
|
overlay_color: "#000"
|
||||||
|
overlay_filter: "0.5"
|
||||||
|
overlay_image: /assets/images/banner.jpg
|
||||||
|
---
|
||||||
11
_pages/websites.code-workspace
Normal file
11
_pages/websites.code-workspace
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"folders": [
|
||||||
|
{
|
||||||
|
"path": ".."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "../../skoobasteeve.github.io.2"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"settings": {}
|
||||||
|
}
|
||||||
40
_sass/minimal-mistakes.scss
Normal file
40
_sass/minimal-mistakes.scss
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
/*!
|
||||||
|
* Minimal Mistakes Jekyll Theme 4.20.2 by Michael Rose
|
||||||
|
* Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
|
||||||
|
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE)
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Variables */
|
||||||
|
@import "minimal-mistakes/variables";
|
||||||
|
|
||||||
|
/* Mixins and functions */
|
||||||
|
@import "minimal-mistakes/vendor/breakpoint/breakpoint";
|
||||||
|
@include breakpoint-set("to ems", true);
|
||||||
|
@import "minimal-mistakes/vendor/magnific-popup/magnific-popup"; // Magnific Popup
|
||||||
|
@import "minimal-mistakes/vendor/susy/susy";
|
||||||
|
@import "minimal-mistakes/mixins";
|
||||||
|
|
||||||
|
/* Core CSS */
|
||||||
|
@import "minimal-mistakes/reset";
|
||||||
|
@import "minimal-mistakes/base";
|
||||||
|
@import "minimal-mistakes/forms";
|
||||||
|
@import "minimal-mistakes/tables";
|
||||||
|
@import "minimal-mistakes/animations";
|
||||||
|
|
||||||
|
/* Components */
|
||||||
|
@import "minimal-mistakes/buttons";
|
||||||
|
@import "minimal-mistakes/notices";
|
||||||
|
@import "minimal-mistakes/masthead";
|
||||||
|
@import "minimal-mistakes/navigation";
|
||||||
|
@import "minimal-mistakes/footer";
|
||||||
|
@import "minimal-mistakes/search";
|
||||||
|
@import "minimal-mistakes/syntax";
|
||||||
|
|
||||||
|
/* Utility classes */
|
||||||
|
@import "minimal-mistakes/utilities";
|
||||||
|
|
||||||
|
/* Layout specific */
|
||||||
|
@import "minimal-mistakes/page";
|
||||||
|
@import "minimal-mistakes/archive";
|
||||||
|
@import "minimal-mistakes/sidebar";
|
||||||
|
@import "minimal-mistakes/print";
|
||||||
560
_sass/minimal-mistakes/_page.scss
Normal file
560
_sass/minimal-mistakes/_page.scss
Normal file
@@ -0,0 +1,560 @@
|
|||||||
|
/* ==========================================================================
|
||||||
|
SINGLE PAGE/POST
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
#main {
|
||||||
|
@include clearfix;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
padding-left: 1em;
|
||||||
|
padding-right: 1em;
|
||||||
|
-webkit-animation: $intro-transition;
|
||||||
|
animation: $intro-transition;
|
||||||
|
max-width: 100%;
|
||||||
|
-webkit-animation-delay: 0.15s;
|
||||||
|
animation-delay: 0.15s;
|
||||||
|
|
||||||
|
@include breakpoint($x-large) {
|
||||||
|
max-width: $max-width;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
min-height: 100vh;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.initial-content,
|
||||||
|
.search-content {
|
||||||
|
flex: 1 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page {
|
||||||
|
@include breakpoint($large) {
|
||||||
|
float: right;
|
||||||
|
width: calc(100% - #{$right-sidebar-width-narrow});
|
||||||
|
padding-right: $right-sidebar-width-narrow;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include breakpoint($x-large) {
|
||||||
|
width: calc(100% - #{$right-sidebar-width});
|
||||||
|
padding-right: $right-sidebar-width;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__inner-wrap {
|
||||||
|
float: left;
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
width: 100%;
|
||||||
|
clear: both;
|
||||||
|
|
||||||
|
.page__content,
|
||||||
|
.page__meta,
|
||||||
|
.page__share {
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
width: 100%;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__title {
|
||||||
|
margin-top: 0;
|
||||||
|
line-height: 1;
|
||||||
|
|
||||||
|
& + .page__meta {
|
||||||
|
margin-top: -0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__lead {
|
||||||
|
font-family: $global-font-family;
|
||||||
|
font-size: $type-size-4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__content {
|
||||||
|
h2 {
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
border-bottom: 1px solid $border-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
.header-link {
|
||||||
|
position: relative;
|
||||||
|
left: 0.5em;
|
||||||
|
opacity: 0;
|
||||||
|
font-size: 0.8em;
|
||||||
|
-webkit-transition: opacity 0.2s ease-in-out 0.1s;
|
||||||
|
-moz-transition: opacity 0.2s ease-in-out 0.1s;
|
||||||
|
-o-transition: opacity 0.2s ease-in-out 0.1s;
|
||||||
|
transition: opacity 0.2s ease-in-out 0.1s;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover .header-link {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
p,
|
||||||
|
li,
|
||||||
|
dl {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* paragraph indents */
|
||||||
|
p {
|
||||||
|
margin: 0 0 $indent-var;
|
||||||
|
|
||||||
|
/* sibling indentation*/
|
||||||
|
@if $paragraph-indent == true {
|
||||||
|
& + p {
|
||||||
|
text-indent: $indent-var;
|
||||||
|
margin-top: -($indent-var);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a:not(.btn) {
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
|
||||||
|
img {
|
||||||
|
box-shadow: 0 0 10px rgba(#000, 0.25);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
margin-top: 1em;
|
||||||
|
font-family: $sans-serif;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
dd {
|
||||||
|
margin-left: 1em;
|
||||||
|
font-family: $sans-serif;
|
||||||
|
font-size: $type-size-6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.small {
|
||||||
|
font-size: $type-size-6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* blockquote citations */
|
||||||
|
blockquote + .small {
|
||||||
|
margin-top: -1.5em;
|
||||||
|
padding-left: 1.25rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__hero {
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
@include clearfix;
|
||||||
|
-webkit-animation: $intro-transition;
|
||||||
|
animation: $intro-transition;
|
||||||
|
-webkit-animation-delay: 0.25s;
|
||||||
|
animation-delay: 0.25s;
|
||||||
|
|
||||||
|
&--overlay {
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
margin-top: 0em;
|
||||||
|
padding: 3em 0;
|
||||||
|
@include clearfix;
|
||||||
|
background-size: cover;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
-webkit-animation: $intro-transition;
|
||||||
|
animation: $intro-transition;
|
||||||
|
-webkit-animation-delay: 0.25s;
|
||||||
|
animation-delay: 0.25s;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
padding-left: 1em;
|
||||||
|
padding-right: 1em;
|
||||||
|
|
||||||
|
@include breakpoint($x-large) {
|
||||||
|
max-width: $x-large;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__title,
|
||||||
|
.page__meta,
|
||||||
|
.page__lead,
|
||||||
|
.btn {
|
||||||
|
color: #fff;
|
||||||
|
text-shadow: 1px 1px 4px rgba(#000, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__lead {
|
||||||
|
max-width: $medium;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__title {
|
||||||
|
font-size: $type-size-2;
|
||||||
|
|
||||||
|
@include breakpoint($small) {
|
||||||
|
font-size: $type-size-1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__hero-image {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
-ms-interpolation-mode: bicubic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__hero-caption {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 2px 5px;
|
||||||
|
color: #fff;
|
||||||
|
font-family: $caption-font-family;
|
||||||
|
font-size: $type-size-7;
|
||||||
|
background: #000;
|
||||||
|
text-align: right;
|
||||||
|
z-index: 5;
|
||||||
|
opacity: 0.5;
|
||||||
|
border-radius: $border-radius 0 0 0;
|
||||||
|
|
||||||
|
@include breakpoint($large) {
|
||||||
|
padding: 5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Social sharing
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.page__share {
|
||||||
|
margin-top: 2em;
|
||||||
|
padding-top: 1em;
|
||||||
|
border-top: 1px solid $border-color;
|
||||||
|
|
||||||
|
@include breakpoint(max-width $small) {
|
||||||
|
.btn span {
|
||||||
|
border: 0;
|
||||||
|
clip: rect(0 0 0 0);
|
||||||
|
height: 1px;
|
||||||
|
margin: -1px;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0;
|
||||||
|
position: absolute;
|
||||||
|
width: 1px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__share-title {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
font-size: $type-size-6;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Page meta
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.page__meta {
|
||||||
|
margin-top: 2em;
|
||||||
|
color: $muted-text-color;
|
||||||
|
font-family: $sans-serif;
|
||||||
|
font-size: $type-size-6;
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__meta-title {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
font-size: $type-size-6;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__meta-sep::before {
|
||||||
|
content: "\2022";
|
||||||
|
padding-left: 0.5em;
|
||||||
|
padding-right: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Page taxonomy
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.page__taxonomy {
|
||||||
|
.sep {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
strong {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__taxonomy-item {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 5px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
padding: 5px 10px;
|
||||||
|
text-decoration: none;
|
||||||
|
border: 1px solid mix(#000, $border-color, 25%);
|
||||||
|
border-radius: $border-radius;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
color: $link-color-hover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.taxonomy__section {
|
||||||
|
margin-bottom: 2em;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
|
||||||
|
&:not(:last-child) {
|
||||||
|
border-bottom: solid 1px $border-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.archive__item-title {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.archive__subtitle {
|
||||||
|
clear: both;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ .taxonomy__section {
|
||||||
|
margin-top: 2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.taxonomy__title {
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
color: $muted-text-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.taxonomy__count {
|
||||||
|
color: $muted-text-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.taxonomy__index {
|
||||||
|
display: grid;
|
||||||
|
grid-column-gap: 2em;
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
margin: 1.414em 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 0.75em;
|
||||||
|
list-style: none;
|
||||||
|
|
||||||
|
@include breakpoint($large) {
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
padding: 0.25em 0;
|
||||||
|
-webkit-box-pack: justify;
|
||||||
|
-ms-flex-pack: justify;
|
||||||
|
justify-content: space-between;
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
border-bottom: 1px solid $border-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.back-to-top {
|
||||||
|
display: block;
|
||||||
|
clear: both;
|
||||||
|
color: $muted-text-color;
|
||||||
|
font-size: 0.6em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
text-align: right;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Comments
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.page__comments {
|
||||||
|
float: left;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
width: 100%;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__comments-title {
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
padding-top: 2rem;
|
||||||
|
font-size: $type-size-6;
|
||||||
|
border-top: 1px solid $border-color;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__comments-form {
|
||||||
|
-webkit-transition: $global-transition;
|
||||||
|
transition: $global-transition;
|
||||||
|
|
||||||
|
&.disabled {
|
||||||
|
input,
|
||||||
|
button,
|
||||||
|
textarea,
|
||||||
|
label {
|
||||||
|
pointer-events: none;
|
||||||
|
cursor: not-allowed;
|
||||||
|
filter: alpha(opacity=65);
|
||||||
|
box-shadow: none;
|
||||||
|
opacity: 0.65;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment {
|
||||||
|
@include clearfix();
|
||||||
|
margin: 1em 0;
|
||||||
|
|
||||||
|
&:not(:last-child) {
|
||||||
|
border-bottom: 1px solid $border-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment__avatar-wrapper {
|
||||||
|
float: left;
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
|
||||||
|
@include breakpoint($large) {
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment__avatar {
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 50%;
|
||||||
|
|
||||||
|
@include breakpoint($large) {
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
padding: 5px;
|
||||||
|
border: 1px solid $border-color;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment__content-wrapper {
|
||||||
|
float: right;
|
||||||
|
width: calc(100% - 60px);
|
||||||
|
|
||||||
|
@include breakpoint($large) {
|
||||||
|
width: calc(100% - 100px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment__author {
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment__date {
|
||||||
|
@extend .page__meta;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Related
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.page__related {
|
||||||
|
@include clearfix();
|
||||||
|
float: left;
|
||||||
|
margin-top: 2em;
|
||||||
|
padding-top: 1em;
|
||||||
|
border-top: 1px solid $border-color;
|
||||||
|
|
||||||
|
@include breakpoint($large) {
|
||||||
|
float: right;
|
||||||
|
width: calc(100% - #{$right-sidebar-width-narrow});
|
||||||
|
}
|
||||||
|
|
||||||
|
@include breakpoint($x-large) {
|
||||||
|
width: calc(100% - #{$right-sidebar-width});
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__related-title {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
font-size: $type-size-6;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Wide Pages
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.wide {
|
||||||
|
.page {
|
||||||
|
@include breakpoint($large) {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include breakpoint($x-large) {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.page__related {
|
||||||
|
@include breakpoint($large) {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include breakpoint($x-large) {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
assets/images/banner.jpg
Executable file
BIN
assets/images/banner.jpg
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 3.7 MiB |
BIN
assets/images/feature-image-01.jpg
Normal file
BIN
assets/images/feature-image-01.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.1 MiB |
BIN
assets/images/feature-image-02.jpg
Normal file
BIN
assets/images/feature-image-02.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.9 MiB |
BIN
assets/images/feature-image-03.jpg
Normal file
BIN
assets/images/feature-image-03.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.5 MiB |
39
index.md
Normal file
39
index.md
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
title: "Ray and Gwen's 2021 Wedding Exxtravaganza!"
|
||||||
|
layout: splash
|
||||||
|
author_profile: false
|
||||||
|
masthead: false
|
||||||
|
header:
|
||||||
|
overlay_color: "#000"
|
||||||
|
overlay_filter: "0.5"
|
||||||
|
overlay_image: /assets/images/banner.jpg
|
||||||
|
excerpt: "Bacon ipsum dolor sit amet salami ham hock ham, hamburger corned beef short ribs kielbasa biltong t-bone drumstick tri-tip tail sirloin pork chop."
|
||||||
|
intro:
|
||||||
|
- excerpt: 'Nullam suscipit et nam, tellus velit pellentesque at malesuada, enim eaque. Quis nulla, netus tempor in diam gravida tincidunt, *proin faucibus* voluptate felis id sollicitudin. Centered with `type="center"`'
|
||||||
|
feature_row:
|
||||||
|
- image_path: assets/images/feature-image-01.jpg
|
||||||
|
alt: "ray and gwen 01"
|
||||||
|
title: "RSVP"
|
||||||
|
url: "rsvp"
|
||||||
|
btn_label: "Let us know you're coming"
|
||||||
|
btn_class: "btn--primary"
|
||||||
|
excerpt: "This is some sample content that goes here with **Markdown** formatting."
|
||||||
|
- image_path: /assets/images/feature-image-02.jpg
|
||||||
|
alt: "ray and gwen 02"
|
||||||
|
title: "Registry"
|
||||||
|
url: "registry"
|
||||||
|
btn_label: "See where we registered"
|
||||||
|
btn_class: "btn--primary"
|
||||||
|
excerpt: "This is some sample content that goes here with **Markdown** formatting."
|
||||||
|
- image_path: /assets/images/feature-image-03.jpg
|
||||||
|
alt: "ray and gwen 02"
|
||||||
|
title: "Wedding Info"
|
||||||
|
url: "info"
|
||||||
|
btn_label: "Get the details"
|
||||||
|
btn_class: "btn--primary"
|
||||||
|
excerpt: "This is some sample content that goes here with **Markdown** formatting."
|
||||||
|
---
|
||||||
|
|
||||||
|
{% include feature_row id="intro" type="center" %}
|
||||||
|
|
||||||
|
{% include feature_row %}
|
||||||
Reference in New Issue
Block a user