Initial commit

This commit is contained in:
Tristan Maat 2018-04-04 20:05:31 +00:00
commit 3c666da659
18 changed files with 7123 additions and 0 deletions

16
src/lib/pug/base.pug Normal file
View file

@ -0,0 +1,16 @@
doctype html
html(lang="en")
head
meta(charset="utf-8")
meta(name="description", content="tlater.net web server")
meta(name="author", content="Tristan Daniel Maat")
meta(name="viewport", content="width=device-width, initial-scale=1")
title= htmlWebpackPlugin.options.title
body
block navigation
include ./navigation
.container.floating-container
block content
block footer

View file

@ -0,0 +1,24 @@
nav.navbar.navbar-inverse.navbar-static-top
.container-fluid
.navbar-header
//- The navbar toggle button for small displays.
button.navbar-toggle.collapsed(
type="button",
data-toggle="collapse",
data-target="#navbar",
aria-expanded="false",
aria-controls="navbar"
)
span.sr-only Toggle navigation
span.icon-bar
span.icon-bar
span.icon-bar
//- The page title
a.navbar-brand(href="#") tlater
//- The actual navbar items
#navbar.navbar-collapse.collapse
ul.nav.navbar-nav
li: a(href="mail") E-Mail
li: a(href="https://www.github.com/TLATER") GitHub

View file

@ -0,0 +1,13 @@
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";
@import "~bootstrap/scss/mixins";
// @import "~nunito-fontface/css/nunito/nunito";
$body-bg: #0f0f0f;
$body-color: #dddddd;
$headings-font-family: "Nunito", $font-family-base;
$hr-border-color: #dddddd;
.navbar .navbar-brand {
text-transform: uppercase;
}