26 lines
		
	
	
		
			977 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			977 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 | 
						|
    <title>tilde.town gallery</title>
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
    <link rel="stylesheet" href="gallery.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<div class="wrapper">
 | 
						|
    <h1>tilde.town gallery</h1>
 | 
						|
    <p>by <a href="https://tilde.town/~severak">Severák</a></p>
 | 
						|
    <p>I really like <a href="https://neocities.org/browse">Neocities browse page</a>. I was wondering how would it look for tilde.town.</p>
 | 
						|
    <p>So here is it:</p>
 | 
						|
    <p><small>(please note that this is just first prototype, not a final product)</small></p>
 | 
						|
    <ul class="gallery">
 | 
						|
        {{#users}}
 | 
						|
        <li><a href="https://tilde.town/~{{.}}"><img src="{{.}}.png" title="{{.}}"><p>{{.}}</p></a></li>
 | 
						|
        {{/users}}
 | 
						|
    </ul>
 | 
						|
 | 
						|
    <hr>
 | 
						|
    <small>Generated using <a href="https://tildegit.org/severak/gallery">this code</a> at {{date}}.</small>
 | 
						|
</div>
 | 
						|
</body>
 | 
						|
</html> |