24 lines
		
	
	
		
			592 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			592 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "base" }}
 | |
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|     <head>
 | |
|         <title>{{ template "title" }} - Guestbook</title>
 | |
|         <meta charset="UTF-8">
 | |
|         <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|         <link href="css/style.css" rel="stylesheet">
 | |
|     </head>
 | |
|     <body>
 | |
|         <header>
 | |
|             <h1><a href="/">Guestbook</a></h1>
 | |
|         </header>
 | |
|         {{ template "nav" . }}
 | |
|         <main>
 | |
|             {{ template "main" . }}
 | |
|         </main>
 | |
|         <footer>
 | |
|             <p>A 32-bit Cafe Project</p>
 | |
|         </footer>
 | |
|     </body>
 | |
| </html>
 | |
| {{ end }}
 |