20 lines
		
	
	
		
			446 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			446 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{define "base"}}
 | 
						|
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
    <head>
 | 
						|
        <meta charset="utf-8">
 | 
						|
        <link rel="stylesheet" href="/static/css/main.css">
 | 
						|
        <title>{{template "title" .}} - 32-Bit Cafe Webring</title>
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <header>
 | 
						|
            <h1>32-Bit Cafe Webring</h1>
 | 
						|
            {{template "nav" .}}
 | 
						|
        </header>
 | 
						|
        <main>
 | 
						|
            {{template "main" .}}
 | 
						|
        </main>
 | 
						|
    </body>
 | 
						|
</html>
 | 
						|
{{end}}
 |