-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from JayBox325/develop
Develop
- Loading branch information
Showing
91 changed files
with
217,981 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"siteDetails": { | ||
"title": "JayPack", | ||
"description": "Lorem set amet consectutor", | ||
"twitter": "JayBox325" | ||
}, | ||
"seo": { | ||
"description": "SEO Description here.", | ||
"socialCard": "" | ||
}, | ||
"socialAccounts": [ | ||
{ | ||
"account": "Twitter", | ||
"text": "Follow us on Twitter", | ||
"icon": "twitter", | ||
"accountUrl": "https://twitter.com/JayBox325" | ||
}, | ||
{ | ||
"account": "Facebook", | ||
"text": "Like us on Facebook", | ||
"icon": "facebook-f", | ||
"accountUrl": "https://www.facebook.com" | ||
}, | ||
{ | ||
"account": "Email", | ||
"text": "Email us", | ||
"icon": "at", | ||
"accountUrl": "mailto:[email protected]" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<title>{{ siteDetails.title }} - {{ siteDetails.description }}</title> | ||
<meta name="description" content="{{ seo.description }}"> | ||
<link rel="canonical" href="https://www.mobilityreuseoutlet.com"> | ||
|
||
|
||
{# Twitter #} | ||
<meta name="twitter:card" content="summary_large_image"> | ||
<meta name="twitter:site" content="@{{ siteDetails.twitter }}"> | ||
<meta name="twitter:creator" content="@{{ siteDetails.twitter }}"> | ||
<meta name="twitter:title" content="{{ siteDetails.title }}"> | ||
<meta name="twitter:description" content="{{ siteDetails.description }}"> | ||
{% if seo.socialCard|length %} | ||
<meta name="twitter:image" content="{{ seo.socialCard }}"> | ||
{% endif %} | ||
|
||
{# Facebook #} | ||
<meta property="og:url" content="#" /> | ||
<meta property="og:type" content="article" /> | ||
<meta property="og:title" content="{{ siteDetails.title }}" /> | ||
<meta property="og:description" content="{{ siteDetails.description }}" /> | ||
{% if seo.socialCard|length %} | ||
<meta property="og:image" content="{{ seo.socialCard }}"> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,5 +37,4 @@ | |
</div> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,32 @@ | ||
<header class="header"> | ||
<a href="#"> | ||
{% set icon = { | ||
symbol: 'ncp-logo', | ||
size: 'lg' | ||
} %} | ||
{% include 'elements/icon.njk' %} | ||
</a> | ||
</header> | ||
<div class="container header__inner"> | ||
|
||
|
||
{# <div class="grid md:grid-cols-12 gap-6 md:gap-0"> | ||
<div class="md:col-span-6 text-white"> #} | ||
|
||
|
||
<div class="grid grid-cols-4 sm:grid-cols-12 header__grid"> | ||
<div class="col-span-3 sm:col-span-4"> | ||
<h1 class="h3"> | ||
<a href="/" class="header__logo">JayPack</a> | ||
</h1> | ||
</div> | ||
<div class="col-span-1 sm:col-span-8"> | ||
<nav class="menu hidden sm:block"> | ||
<ul class="menu__list"> | ||
<li class="menu__item"> | ||
<a class="menu__link is-active" href="#">Menu</a> | ||
</li> | ||
<li class="menu__item"> | ||
<a class="menu__link" href="#">Menu</a> | ||
</li> | ||
<li class="menu__item"> | ||
<a class="menu__link" href="#">Menu</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</div> | ||
</div> | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{% import '_macros/macros.njk' as macro %} | ||
|
||
{# Content #} | ||
{% set title = title|default("Read more") %} | ||
{% set action = action|default(null) %} | ||
|
||
{# Options #} | ||
{% set type = type|default('link') %} | ||
{% set target = target|default(false) %} | ||
{% set full = full|default(false) %} | ||
{% set classes = classes|default('bg-orange-500 hover:bg-orange-600 text-white') %} | ||
|
||
{% if type == 'link' or type == 'download' %} | ||
{% set download = true %} | ||
{% set type = 'link' %} | ||
{% endif %} | ||
|
||
{% switch type %} | ||
{% case 'button' %} | ||
<button {{ action }} class="btn {{ classes }}{% if full %} btn--full{% endif %}">{{ title }}</button> | ||
{% case 'link' %} | ||
<a href="{{ action }}" {{ macro.external(target) }} class="btn {{ classes }}{% if full %} btn--full{% endif %}" {% if download %}download{% endif %}>{{ title }}</a> | ||
{% endswitch %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
{% extends "_layout/_base.njk" %} | ||
|
||
{% block content %} | ||
<section class="row row--primary"> | ||
<h1>Here is a row</h1> | ||
<section class="row row--gray"> | ||
<div class="container"> | ||
<div class="w-content"> | ||
<h1>Welcome to {{ siteDetails.title }}</h1> | ||
<p>A front end scaffolding framework for static projects using Nunjucks or for CraftCMS sites with JayCraft.</p> | ||
</div> | ||
<div class="mt-6"> | ||
{% set button = { | ||
action: 'https://google.com' | ||
} %} | ||
{% include 'elements/button.njk' %} | ||
</div> | ||
</div> | ||
</section> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.