29 lines
1.6 KiB
HTML
29 lines
1.6 KiB
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
{% block tittle %}CyberExam{% endblock tittle %}
|
|
{% block body %}
|
|
<section class="spotlight parallax bg-cover bg-size--cover" data-spotlight="fullscreen" style="background-image: url('{% static 'images/backgrounds/img-1.jpg' %}')">
|
|
<span class="mask bg-primary alpha-7"></span>
|
|
<div class="spotlight-holder py-lg pt-lg-xl" style="height: auto;">
|
|
<div class="container d-flex align-items-center no-padding">
|
|
<div class="col">
|
|
<div class="row cols-xs-space align-items-center text-center text-md-left justify-content-center">
|
|
<div class="col-7">
|
|
<div class="text-center mt-5">
|
|
<img src="{% static 'images/brand/icon.png' %}" style="width: 200px;" class="img-fluid animated" data-animation-in="jackInTheBox" data-animation-delay="1000">
|
|
<h2 class="heading display-4 font-weight-400 text-white mt-5 animated" data-animation-in="fadeInUp" data-animation-delay="2000">
|
|
<span class="font-weight-700">不夜城考试中心</span> Cyberpunk2077
|
|
</h2>
|
|
<p class="lead text-white mt-3 lh-180 c-white animated" data-animation-in="fadeInUp" data-animation-delay="2500">
|
|
赛博高考指模拟题库<strong class="text-white">__Sponsored by Zetatech</strong>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock body %}
|
|
|