mirror of
https://github.com/nokonoko/Uguu.git
synced 2024-01-06 13:35:15 +00:00
2057341d8f
* Ko-Fi donation button added. * Templating now uses ejs instead of swig. * clean-css/uglify-js replaced with minify-all. * Minor PHP changes. * Preparations for major refactor.
15 lines
515 B
Plaintext
15 lines
515 B
Plaintext
<%- include('./templates/partials/header.ejs'); -%>
|
|
<div class="container">
|
|
<div class="jumbotron">
|
|
<%- include('./templates/partials/lead.ejs'); -%>
|
|
<%- include('./templates/partials/upload_form.ejs'); -%>
|
|
</div>
|
|
|
|
<% if (malwareBanner) { %>
|
|
<%- include('./templates/partials/malware_banner.ejs'); -%>
|
|
<% } %>
|
|
|
|
<% if (donationBanner) { %>
|
|
<%- include('./templates/partials/donation_banner.ejs'); -%>
|
|
<% } %>
|
|
<%- include('./templates/partials/footer.ejs'); -%> |