A human-friendly DSL for ATProto Lexicons
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 51 lines 2.1 kB view raw
1<!DOCTYPE html> 2<html lang="{{ lang | default(value='en') }}"> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>{% block title %}{{ config.title }}{% endblock %}</title> 7 <meta name="description" content="{% block description %}{{ config.description }}{% endblock %}"> 8 <link rel="icon" type="image/svg+xml" href="{{ get_url(path='logo.svg') }}"> 9 <link rel="preconnect" href="https://fonts.googleapis.com"> 10 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 11 <link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Atkinson+Hyperlegible+Mono:wght@400;700&display=swap" rel="stylesheet"> 12 <link rel="stylesheet" href="{{ get_url(path='style.css') }}"> 13 {% block extra_head %}{% endblock %} 14</head> 15<body> 16 <header> 17 <nav> 18 <div class="nav-container"> 19 <div class="logo"> 20 <a href="{{ get_url(path='/') }}"> 21 <img src="{{ get_url(path='logo.svg') }}" alt="MLF" height="48"> 22 </a> 23 </div> 24 <ul class="nav-links"> 25 <li><a href="{{ get_url(path='/') }}">Home</a></li> 26 <li><a href="{{ get_url(path='/docs') }}">Docs</a></li> 27 <li><a href="{{ get_url(path='@/playground.md') }}">Playground</a></li> 28 <li><a href="{{ config.extra.github_url }}" target="_blank">Source</a></li> 29 </ul> 30 </div> 31 </nav> 32 <div class="warning-banner"> 33 <div class="warning-content"> 34 Pre-release: not everything will work as expected 35 </div> 36 </div> 37 </header> 38 39 <main> 40 {% block content %}{% endblock %} 41 </main> 42 43 <footer> 44 <div class="container"> 45 <p>MLF is licensed under <a href="https://choosealicense.com/licenses/mit/" target="_blank">MIT</a></p> 46 </div> 47 </footer> 48 49 {% block extra_scripts %}{% endblock %} 50</body> 51</html>