Dockerize Project
This commit is contained in:
commit
e679d02b41
205 changed files with 17941 additions and 0 deletions
36
templates/base.html.twig
Executable file
36
templates/base.html.twig
Executable file
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{% block title %}ventry.host{% endblock %}</title>
|
||||
<link rel="icon" type="image/png" href="{{ asset('assets/img/logo-white.png') }}">
|
||||
<link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
|
||||
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans:400,600" rel="stylesheet">
|
||||
<script src="https://unpkg.com/animejs@3.0.1/lib/anime.min.js" defer></script>
|
||||
<script src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js" defer></script>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
||||
<meta property="og:type" content="website">
|
||||
{% block twitter_card %}
|
||||
<meta name='theme-color' content='#0275e1'/>
|
||||
<meta name='og:description'
|
||||
content='We have revamped our free File Hosting service and are excited to share the new features and benefits with you! With its customizability, you can change your experience to suit your needs with no limitations. Come check it out and see for yourself!'>
|
||||
<meta name='twitter:title' content='ventry.host | v²'>
|
||||
<meta name='twitter:card' content='summary_large_image'>
|
||||
<meta name='twitter:image' content='{{ asset('assets/img/large-banner-textonly.png') }}'>
|
||||
{% endblock %}
|
||||
{% block head %}{% endblock %}
|
||||
{% block styles %}{% endblock %}
|
||||
</head>
|
||||
<body class="is-boxed has-animations">
|
||||
<div class="body-wrap">
|
||||
{% block body %}{% endblock %}
|
||||
{% include 'partials/__footer.html.twig' %}
|
||||
</div>
|
||||
<script src="https://code.jquery.com/jquery-3.6.1.min.js"
|
||||
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
|
||||
<script src="{{ asset('assets/js/main.min.js') }}" defer></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue