initial commit
This commit is contained in:
20
templates/carrousel.jade
Normal file
20
templates/carrousel.jade
Normal file
@@ -0,0 +1,20 @@
|
||||
header#myCarousel.carousel.slide
|
||||
// Indicators
|
||||
ol.carousel-indicators
|
||||
li.active(data-target='#myCarousel', data-slide-to='0')
|
||||
li(data-target='#myCarousel', data-slide-to='1')
|
||||
li(data-target='#myCarousel', data-slide-to='2')
|
||||
// Wrapper for slides
|
||||
.carousel-inner
|
||||
.item.active
|
||||
.fill(style="background-image:url('http://placehold.it/1900x1080&text=Slide One');")
|
||||
.carousel-caption
|
||||
h2 Caption 1
|
||||
.item
|
||||
.fill(style="background-image:url('http://placehold.it/1900x1080&text=Slide Two');")
|
||||
.carousel-caption
|
||||
h2 Caption 2
|
||||
.item
|
||||
.fill(style="background-image:url('http://placehold.it/1900x1080&text=Slide Three');")
|
||||
.carousel-caption
|
||||
h2 Caption 3
|
||||
6
templates/cfp.jade
Normal file
6
templates/cfp.jade
Normal file
@@ -0,0 +1,6 @@
|
||||
include ./header.jade
|
||||
include ./navbar.jade
|
||||
include ./carrousel.jade
|
||||
.container
|
||||
.markdown-body
|
||||
!=content
|
||||
21
templates/header.jade
Normal file
21
templates/header.jade
Normal file
@@ -0,0 +1,21 @@
|
||||
doctype html
|
||||
html(lang='en')
|
||||
head
|
||||
meta(charset='utf-8')
|
||||
meta(http-equiv='X-UA-Compatible', content='IE=edge')
|
||||
meta(name='viewport', content='width=device-width, initial-scale=1')
|
||||
meta(name='description', content='')
|
||||
meta(name='author', content='')
|
||||
title= title
|
||||
// Bootstrap Core CSS
|
||||
link(href='css/bootstrap.min.css', rel='stylesheet')
|
||||
// Custom CSS
|
||||
link(href='css/modern-business.css', rel='stylesheet')
|
||||
// Custom Fonts
|
||||
link(href='font-awesome/css/font-awesome.min.css', rel='stylesheet', type='text/css')
|
||||
// HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries
|
||||
// WARNING: Respond.js doesn't work if you view the page via file://
|
||||
//if lt IE 9
|
||||
script(src='https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js')
|
||||
script(src='https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js')
|
||||
|
||||
22
templates/navbar.jade
Normal file
22
templates/navbar.jade
Normal file
@@ -0,0 +1,22 @@
|
||||
body
|
||||
// Navigation
|
||||
nav.navbar.navbar-inverse.navbar-fixed-top(role='navigation')
|
||||
.container
|
||||
// Brand and toggle get grouped for better mobile display
|
||||
.navbar-header
|
||||
button.navbar-toggle(type='button', data-toggle='collapse', data-target='#bs-example-navbar-collapse-1')
|
||||
span.sr-only Toggle navigation
|
||||
span.icon-bar
|
||||
span.icon-bar
|
||||
span.icon-bar
|
||||
a.navbar-brand(href='index.html') THSF(0x7e0)
|
||||
// Collect the nav links, forms, and other content for toggling
|
||||
#bs-example-navbar-collapse-1.collapse.navbar-collapse
|
||||
ul.nav.navbar-nav.navbar-right
|
||||
li
|
||||
a(href='#') About
|
||||
li
|
||||
a(href='#') Cfp
|
||||
li
|
||||
a(href='#') Contact
|
||||
|
||||
Reference in New Issue
Block a user