23 lines
		
	
	
		
			613 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			613 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "base"}}
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <link rel="stylesheet" href="/css/spectre-icons.min.css">
 | 
						|
    <link rel="stylesheet" href="/css/spectre.min.css">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1" />
 | 
						|
    <title>Pastebin</title>
 | 
						|
  </head>
 | 
						|
<body>
 | 
						|
  <section class="container grid-960 mt-10">
 | 
						|
    <header class="navbar">
 | 
						|
      <section class="navbar-section">
 | 
						|
        <a href="/" class="navbar-brand mr-10">Paste</a>
 | 
						|
      </section>
 | 
						|
      <section class="navbar-section"></section>
 | 
						|
    </header>
 | 
						|
    {{template "content" .}}
 | 
						|
  </section>
 | 
						|
</body>
 | 
						|
</html>
 | 
						|
{{end}}
 |