Blame view

mustache/app/views/layouts/login.mustache 745 Bytes
5a739853   patrick.he   commit
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
  <!DOCTYPE html>
  <html lang="en">
  	<head>
  		<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  		<meta charset="utf-8" />
  		
  		<title>{{page.title}} - {{site.title}}</title>	
  		<meta name="description" content="{{page.description}}" />
  		
  		<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
  		
  		{{> layout._template.styles}}
  	</head>
  
  	<body class="login-layout">
  	
  		<div class="main-container">
  			<div class="main-content">
  				<div class="row">
  				 <div class="col-sm-10 col-sm-offset-1">
  					{{> page.content }}
  				 </div><!-- /.col -->
  				</div><!-- /.row -->
  			</div><!-- /.main-content -->
  		</div><!-- /.main-container -->
  
  		{{> layout._template.scripts}}
  
  	</body>
  </html>