CoolFace
Apppublic

ZeroTwo3/videoshop-backend

sourceHugging Faceopenrailupdated 3y agoView on Hugging Face
2likes
base.html17 linesDownload Raw Back to templates
1<!DOCTYPE html>2<html lang="en">3<head>4    {% block head %}5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <link rel="stylesheet" href="{{url_for('static', filename='style.css')}}" />7    <title>AudioCraft — MOS</title>8    {% endblock %}9</head>10<body>11    <div class="content">12	<h1>AudioCraft — MOS </h1>13    {% block content %}{% endblock %}14</div>15</body>16</html>17