Skip to content

Commit

Permalink
removed dist folder
Browse files Browse the repository at this point in the history
tiapnn committed Dec 14, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 4b31a06 commit 7f5c342
Showing 9 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# dependecies installed by npm
/node_modules

# prod
dist

# secrets
.env

4 changes: 2 additions & 2 deletions dist/about/index.html
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
</head>
<body class="container mx-auto mb-12 lg:max-w-4xl text-gray-700">

<header class="bg-teal-500 flex justify-between px-4 py-2 mb-10">
<header class="bg-blue-500 flex justify-between px-4 py-2 mb-10">

<h1 class=" text-white font-medium text-2xl"><a href="/">ElevenTail <small class="text-sm">a site scaffold</small></a></h1>

@@ -94,7 +94,7 @@ <h1 class="heading">Super speedy start</h1>
<li>Create a new Netlify site linked to your new repo</li>
<li>Set up a CI/CD pipeline for your new site</li>
</ul>
<a class="bg-teal-500 p-4 mb-6 inline-block font-semibold border-b-2 text-white rounded shadow-lg hover:bg-teal-400" href="https://app.netlify.com/start/deploy?repository=https://github.com/tiapnn/pnzdevs-blog">Clone and set up a new site on Netlify</a>
<a class="bg-blue-500 p-4 mb-6 inline-block font-semibold border-b-2 text-white rounded shadow-lg hover:bg-blue-400" href="https://app.netlify.com/start/deploy?repository=https://github.com/tiapnn/pnzdevs-blog">Clone and set up a new site on Netlify</a>
<p>
This is the process I use to get a new site with all of its deployment and hosting set up as quickly as possible.
</p>
2 changes: 1 addition & 1 deletion dist/blog/blog-posts-live-in-a-collection/index.html
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
</head>
<body class="container mx-auto mb-12 lg:max-w-4xl text-gray-700">

<header class="bg-teal-500 flex justify-between px-4 py-2 mb-10">
<header class="bg-blue-500 flex justify-between px-4 py-2 mb-10">

<h1 class=" text-white font-medium text-2xl"><a href="/">ElevenTail <small class="text-sm">a site scaffold</small></a></h1>

2 changes: 1 addition & 1 deletion dist/blog/blog-posts-use-a-layout-of-their-own/index.html
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
</head>
<body class="container mx-auto mb-12 lg:max-w-4xl text-gray-700">

<header class="bg-teal-500 flex justify-between px-4 py-2 mb-10">
<header class="bg-blue-500 flex justify-between px-4 py-2 mb-10">

<h1 class=" text-white font-medium text-2xl"><a href="/">ElevenTail <small class="text-sm">a site scaffold</small></a></h1>

2 changes: 1 addition & 1 deletion dist/blog/index.html
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
</head>
<body class="container mx-auto mb-12 lg:max-w-4xl text-gray-700">

<header class="bg-teal-500 flex justify-between px-4 py-2 mb-10">
<header class="bg-blue-500 flex justify-between px-4 py-2 mb-10">

<h1 class=" text-white font-medium text-2xl"><a href="/">ElevenTail <small class="text-sm">a site scaffold</small></a></h1>

4 changes: 2 additions & 2 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
</head>
<body class="container mx-auto mb-12 lg:max-w-4xl text-gray-700">

<header class="bg-teal-500 flex justify-between px-4 py-2 mb-10">
<header class="bg-blue-500 flex justify-between px-4 py-2 mb-10">

<h1 class=" text-white font-medium text-2xl">O RLY?</h1>

@@ -57,7 +57,7 @@ <h1 class=" text-white font-medium text-2xl">O RLY?</h1>
<img src="/images/possum-balloon.png" alt="The James Williamson Possum Balloon" class="inline-block filter-bw-800">
</a>
</div>
<div class="p-6 bg-teal-500 text-white ">
<div class="p-6 bg-blue-500 text-white ">
<h1 class="text-6xl pb-6 border-b-2 border-white leading-none font-serif">
ElevenTail Site Scaffold
</h1>
2 changes: 1 addition & 1 deletion src/site/_includes/header.njk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<header class="bg-teal-500 flex justify-between px-4 py-2 mb-10">
<header class="bg-blue-500 flex justify-between px-4 py-2 mb-10">
{% if page.url == "/" %}
<h1 class=" text-white font-medium text-2xl">O RLY?</h1>
{% else %}
2 changes: 1 addition & 1 deletion src/site/about.njk
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ layout: default
<li>Create a new Netlify site linked to your new repo</li>
<li>Set up a CI/CD pipeline for your new site</li>
</ul>
<a class="bg-teal-500 p-4 mb-6 inline-block font-semibold border-b-2 text-white rounded shadow-lg hover:bg-teal-400" href="https://app.netlify.com/start/deploy?repository={{ pkg.repository.url }}">Clone and set up a new site on Netlify</a>
<a class="bg-blue-500 p-4 mb-6 inline-block font-semibold border-b-2 text-white rounded shadow-lg hover:bg-blue-400" href="https://app.netlify.com/start/deploy?repository={{ pkg.repository.url }}">Clone and set up a new site on Netlify</a>
<p>
This is the process I use to get a new site with all of its deployment and hosting set up as quickly as possible.
</p>
2 changes: 1 addition & 1 deletion src/site/index.njk
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ layout: default
<img src="/images/possum-balloon.png" alt="The James Williamson Possum Balloon" class="inline-block filter-bw-800">
</a>
</div>
<div class="p-6 bg-teal-500 text-white ">
<div class="p-6 bg-blue-500 text-white ">
<h1 class="text-6xl pb-6 border-b-2 border-white leading-none font-serif">
ElevenTail Site Scaffold
</h1>

0 comments on commit 7f5c342

Please sign in to comment.