Skip to content

Instantly share code, notes, and snippets.

View body20002's full-sized avatar
🥴

Abdallah body20002

🥴
View GitHub Profile
@body20002
body20002 / base.html
Last active August 22, 2022 18:36
FJPT Stack (FastAPI + Jinja2 + Preact + tailwindcss)
<!doctype html>
<html>
<head>
{% block head %}
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="{{ url_for('static', path='css/style.css') }}" rel="stylesheet">
<title>{% block title %}
{{ '%s | Your Name' % title or 'Your Name' }}
{% endblock %}