-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathEFFECT.CSS
More file actions
42 lines (29 loc) · 1.2 KB
/
Copy pathEFFECT.CSS
File metadata and controls
42 lines (29 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% load bootstrap3 %}
{% load bootstrap4 %}
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{%if title%}
<title>{{title}}</title>
{%endif%}
{% block styles %}
{% bootstrap_css %}
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Pacifico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz&display=swap" rel="stylesheet">
{% endblock %}
</head>
<body style="background-image: url(https://storage.googleapis.com/igeeksblog/wp-content/uploads/2015/01/How-to-Take-Perfect-Selfies-with-iPhone.jpg);background-size:100%;background-repeat: no-repeat;">
</div>
{% block content %} {%endblock%}
{% block scripts %}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
{% bootstrap_javascript %}
{% endblock %}
</body>
</html>