events
This commit is contained in:
		@@ -4,7 +4,7 @@
 | 
			
		||||
    <meta charset="UTF-8">
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
			
		||||
    <title>{% block title %}Alfie's basement{% endblock %}</title>
 | 
			
		||||
    <link rel="icon" href="/static/content/icon.webp">
 | 
			
		||||
    <link rel="icon" href="/static/content/general_images/icon.webp">
 | 
			
		||||
    <link rel="stylesheet" href="/static/css/base.css">
 | 
			
		||||
    <meta name="description" content="{% block description %}server backend survivor{% endblock %}">
 | 
			
		||||
    <meta name="keywords" content="{% block keywords %}Alfie King, Alfie, King, Alfieking, Alfieking.dev, dev, server, developer, backend, selfhost, homelab{% endblock %}">
 | 
			
		||||
@@ -28,6 +28,7 @@
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li><a href="/">Home</a></li>
 | 
			
		||||
                    <li><a href="/toaster">Toaster</a></li>
 | 
			
		||||
                    <li><a href="/events">Events</a></li>
 | 
			
		||||
                    <li><a href="https://git.alfieking.dev/acetheking987">Gitea</a></li>
 | 
			
		||||
                    <li><a href="https://www.last.fm/user/acetheking987">LastFm</a></li>
 | 
			
		||||
                    <li><a href="https://prismic.alfieking.dev">Prismic</a></li>
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										22
									
								
								templates/bases/directory.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								templates/bases/directory.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,22 @@
 | 
			
		||||
{% extends "bases/base.html" %}
 | 
			
		||||
 | 
			
		||||
{% block title %}{{ directory }} - Alfie's basement{% endblock %}
 | 
			
		||||
{% block description %}server backend survivor{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block head %}
 | 
			
		||||
<link rel="stylesheet" href="/static/css/directory.css">
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block scripts %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
<section id="directory">
 | 
			
		||||
    <h1>/{{ directory }}</h1>
 | 
			
		||||
    <ul>
 | 
			
		||||
        {% for page in pages %}
 | 
			
		||||
            <li><a href="/{{ directory }}{{ page.split('.')[0] }}">{{ page.split('.')[0] }}</a></li>
 | 
			
		||||
        {% endfor %}
 | 
			
		||||
    </ul>
 | 
			
		||||
</section>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
		Reference in New Issue
	
	Block a user