16 lines
399 B
HTML
16 lines
399 B
HTML
{% extends "layouts/base.html" %}
|
|
|
|
{% block title %}KH1FM - Sythensis{% endblock %}
|
|
|
|
{% block head %}
|
|
<link rel="stylesheet" href="{{ crate::find_hash("/public/styles/common/synth.css") }}"></link>
|
|
<script
|
|
type="module"
|
|
src="{{ crate::find_hash("/public/scripts/common/synth.js") }}"
|
|
></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "components/common/synth.html" %}
|
|
{% endblock %}
|