This repository has been archived by the owner on Feb 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New website (Hugo + Netlify + Bulma CSS)
Signed-off-by: Luc Perkins <[email protected]>
- Loading branch information
1 parent
1d35b1e
commit 48f0baf
Showing
82 changed files
with
14,770 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# macOS-specific assets | ||
.DS_Store | ||
|
||
# Yarn-generated assets | ||
node_modules/ | ||
|
||
# Hugo-generated assets | ||
public/ | ||
|
||
# Ruby assets | ||
.bundle/ | ||
vendor/bundle/ |
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,15 @@ | ||
serve: | ||
hugo server \ | ||
--buildDrafts \ | ||
--buildFuture \ | ||
--disableFastRender \ | ||
--ignoreCache | ||
|
||
production-build: | ||
hugo | ||
|
||
preview-build: | ||
hugo \ | ||
--buildDrafts \ | ||
--buildFuture \ | ||
--baseURL $(DEPLOY_PRIME_URL) |
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,12 @@ | ||
function navbarToggle() { | ||
$(".navbar-burger").click(function() { | ||
$(".navbar-burger").toggleClass("is-active"); | ||
$(".navbar-menu").toggleClass("is-active"); | ||
}); | ||
} | ||
|
||
$(function() { | ||
navbarToggle(); | ||
|
||
console.log("Welcome to the TiKV docs!"); | ||
}); |
Oops, something went wrong.