-
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.
- Loading branch information
1 parent
9b637e7
commit f33f9a9
Showing
9 changed files
with
513 additions
and
28 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
Allow: / |
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,3 +1,6 @@ | ||
import bootstrap from 'bootstrap'; | ||
/* | ||
(function() { | ||
console.log('Vite Vanilla Boilerplate Loaded!'); | ||
})(); | ||
*/ |
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 +1,2 @@ | ||
// place global css variables here | ||
@import 'bootstrap'; |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<html lang="en"> | ||
{{> head }} | ||
<body> | ||
{{> intro index=true}} | ||
{{> intro}} | ||
{{> scripts}} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
<section class="intro"> | ||
<h1 class="header">Vite Template Project</h1> | ||
<img class="logo" src="{{webRoot}}/assets/img/favicon.svg" alt="Logo" /> | ||
<h1 class="header">Vite Template Project</h1> | ||
<ul class="nav"> | ||
<li> | ||
<a{{#if index}} class="active"{{/if}} href="index.html">Home</a> | ||
<a href="index.html">Home</a> | ||
</li> | ||
<li> | ||
<a{{#if index}}{{else}} class="active"{{/if}} href="other.html">Other</a> | ||
<a href="other.html">Other</a> | ||
</li> | ||
</ul> | ||
<p>This repository will help create a boilerplate vanilla javascript + scss project using Vite. Also Handlebars included.</p> | ||
<pre class="using"> npm install | ||
npm run dev</pre> | ||
</section> |
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