summaryrefslogtreecommitdiffhomepage
path: root/resources/jade/include/layout-sidebar.jade
blob: 6e4610b60585758694250a913c6b59f87f35fe66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
extends layout.jade

block append titleContainer
	|  – 
	block subtitle

block content
	div.row
		div.col-lg-3.col-md-4
			ul.nav.nav-pills.nav-stacked
				block menu
					mixin menuItem(active, link, text)
						li(role='presentation', class=active ? 'active' : '')
							a(href=link)= text


		div.col-lg-7.col-md-6
			h3(style={'margin-top': 0})
				block subtitle
				|  
				small
					block subtitleDate
		div.col-lg-2.col-md-2.text-right
			block subtitle-right
				mixin githubLink(repo)
					a(href='https://github.com/' + repo, target='_blank', title='Source on GitHub')
						img(src='/assets/img/github.png', alt='GitHub')

		div.col-lg-9.col-md-8.text-justify
			block page