Your IP : 216.73.216.236


Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/views/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/views/app.jade

doctype html
html(lang="en")
	head
		title= pageTitle
		meta(name='viewport' content='width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0')
		meta(charset='utf-8')
		meta(name='keywords' content='Kanban IT board, jade, node, javascript')
		meta(name='rights' content='Kamil Rogala, info@kamilrogala.it')
		meta(name='robots' content='index, follow')
		meta(name='description' content='Kanban IT board by KamilRogala.IT.')
		
		link(href='/templates/intro/favicon.ico' rel='shortcut icon' type='image/vnd.microsoft.icon')
		link(href='//fonts.googleapis.com/css?family=Didact+Gothic|Roboto+Mono&subset=latin-ext' rel='stylesheet')
		link(rel='stylesheet', href='css/style.css' type='text/css')
		link(rel='stylesheet', href='css/app.css' type='text/css')
	body
		header
			.wrapper
				.flex-container.align-center.justify-space-between
					a.logo-link(href='/' title='Kanban IT by KamilRogala.IT')
						.logo.flex-container.justify-center
							.logo-el.color-1
							.logo-el.color-2
							.logo-el.color-3
						h1 Kanban IT
					nav.top-nav
						ul.flex-container.align-center.justify-flex-end
							li
								a(href='/' title='homepage') homepage
							li
								a.active(href='/app' title='Kanban IT') App
							li
								a(href='/contact' title='contact') contact
		main
			.wrapper
				h2= header
				p Make your work easier with Kanban board.
				.kanban-options-container.flex-container.align-flex-start.justify-flex-end
					.option.add-new-item
						button.add-new-item-btn(type='button') Add new item
				.kanban-boards-container.flex-container.align-flex-start.justify-space-between
					#todo.single-kanban-board
						h3.board-title To Do
						.single-kanban-items-container
					#progress.single-kanban-board
						h3.board-title In progress
						.single-kanban-items-container
					#done.single-kanban-board
						h3.board-title Done
						.single-kanban-items-container
		footer
			.wrapper
				.flex-container.align-flex-end.justify-space-between
					nav.bottom-nav
						ul.flex-container.align-center.justify-flex-start
							li
								a(href='/' title='homepage') homepage
							li
								a.active(href='/app' title='Kanban IT') App
							li
								a(href='/contact' title='contact') contact
					p.author author: 
							a(href='https://kamilrogala.it' title='KamilRogala.IT' target='_blank') KamilRogala.IT
		script(src='https://code.jquery.com/jquery-3.3.1.min.js')
		script(src='https://code.jquery.com/ui/1.12.1/jquery-ui.min.js')
		script(src='js/app.js')
		script(src='js/front.js')