This commit is contained in:
Victor Alexandrovich Tsyrenschikov
2025-09-15 23:54:59 +05:00
parent 41f6699da9
commit 42ed1b04cb
69 changed files with 5614 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{% extends "layouts/base.html" %}
{% load static %}
{% block content %}
<div class="container-fluid py-2">
<div class="row min-vh-80">
<div class="col-6 mx-auto">
<div class="card mt-4">
<div class="card-header p-0 position-relative mt-n4 mx-3 z-index-2">
<div class="bg-gradient-primary shadow-primary border-radius-lg pt-4 pb-3">
<h6 class="text-white text-capitalize ps-3">Material Design Icons</h6>
<p class="mb-0 text-white ps-3">Handcrafted by our friends from
<a class="text-white font-weight-bold" target="_blank" href="https://fonts.google.com/icons">Google</a>
</p>
</div>
</div>
<div class="card-body">
<p>Through most of the examples in this dashboard, we have used the default <a href="https://fonts.google.com/icons">Icons for the Material Design</a> provided by Google.</p>
<i class="material-symbols-rounded text-2xl">face</i>
</div>
</div>
</div>
</div>
{% include "includes/footer.html" %}
</div>
{% endblock content %}