Student HTML Twig
Student HTML Twig
twig' %}
{% block head %}
<style>
body{
background: #F4F7FD;
margin-top:20px;
}
.card-margin {
margin-bottom: 1.875rem;
}
.card {
border: 0;
box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
-webkit-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
-moz-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
-ms-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #ffffff;
background-clip: border-box;
border: 1px solid #e6e4e9;
border-radius: 8px;
}
.card .card-header.no-border {
border: 0;
}
.card .card-header {
background: none;
padding: 0 0.9375rem;
font-weight: 500;
display: flex;
align-items: center;
min-height: 50px;
}
.card-header:first-child {
border-radius: calc(8px - 1px) calc(8px - 1px) 0 0;
}
.widget-49 .widget-49-title-wrapper {
display: flex;
align-items: center;
}
.widget-49 .widget-49-meeting-action {
text-align: right;
}
.widget-49 .widget-49-meeting-action a {
text-transform: uppercase;
}
</style>
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
<script>
$('#myModal').on('shown.bs.modal', function () {
$('#myInput').trigger('focus')
})</script>
{% endblock %}
{% endblock %}
{% block body %}
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="card card-margin">
<div class="card-header no-border">
<h5 class="card-title">EVENT</h5>
</div>
<div class="card-body pt-0">
<div class="widget-49">
<div class="widget-49-title-wrapper">
<div class="widget-49-date-success">
<span class="widget-49-date-day">22</span>
<span class="widget-49-date-month">apr</span>
</div>
<div class="widget-49-meeting-info">
<span class="widget-49-pro-title">PRO-027865 Opera
module</span>
<span class="widget-49-meeting-time">12:00 to 13.30
Hrs</span>
</div>
</div>
<ol class="widget-49-meeting-points">
<li class="widget-49-meeting-item"><span>Scope is revised
and updated</span></li>
<li class="widget-49-meeting-item"><span>Time-line has been
changed</span></li>
<li class="widget-49-meeting-item"><span>Received approval
to start wire-frame</span></li>
</ol>
<div class="widget-49-meeting-action">
<a href="#" class="btn btn-sm btn-flash-border-
success">View All</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}