Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
New website (Hugo + Netlify + Bulma CSS)
Browse files Browse the repository at this point in the history
Signed-off-by: Luc Perkins <[email protected]>
  • Loading branch information
lucperkins committed Oct 31, 2018
1 parent 1d35b1e commit 48f0baf
Show file tree
Hide file tree
Showing 82 changed files with 14,770 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
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/
15 changes: 15 additions & 0 deletions Makefile
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)
12 changes: 12 additions & 0 deletions assets/js/app.js
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!");
});
Loading

0 comments on commit 48f0baf

Please sign in to comment.