1+ {% extends 'core/base_without_nav.html' %}
2+ {% load static %}
3+ {% block title %}{{ title }}{% endblock %}
4+ {% block description %}{{ description }}{% endblock %}
5+ {% block head %}
6+ < link rel ='stylesheet ' href ='https://unpkg.com/emoji.css/dist/emoji.min.css '>
7+
8+ < style >
9+ @font-face {
10+ font-family : 'Gilroy-Bold' ;
11+ font-style : normal;
12+ font-weight : normal;
13+ src : local ('Gilroy-Bold ☞' ), url ('{% static "fonts/Gilroy-Bold.woff" %}' ) format ('woff' );
14+ }
15+
16+ @font-face {
17+ font-family : 'Gilroy-Heavy' ;
18+ font-style : normal;
19+ font-weight : normal;
20+ src : local ('Gilroy-Heavy ☞' ), url ('{% static "fonts/Gilroy-Heavy.woff" %}' ) format ('woff' );
21+ }
22+
23+ @font-face {
24+ font-family : 'Gilroy-Light' ;
25+ font-style : normal;
26+ font-weight : normal;
27+ src : local ('Gilroy-Light ☞' ), url ('{% static "fonts/Gilroy-Light.woff" %}' ) format ('woff' );
28+ }
29+
30+ @font-face {
31+ font-family : 'Gilroy-Medium' ;
32+ font-style : normal;
33+ font-weight : normal;
34+ src : local ('Gilroy-Medium ☞' ), url ('{% static "fonts/Gilroy-Medium.woff" %}' ) format ('woff' );
35+ }
36+
37+ @font-face {
38+ font-family : 'Gilroy-Regular' ;
39+ font-style : normal;
40+ font-weight : normal;
41+ src : local ('Gilroy-Regular ☞' ), url ('{% static "fonts/Gilroy-Regular.woff" %}' ) format ('woff' );
42+ }
43+
44+ </ style >
45+ < link rel ="stylesheet " href ="{% static 'css/client.css' %} "/>
46+
47+ < style >
48+ h1 {
49+ font-size : 3.2rem ;
50+ }
51+
52+ input .form-control , button .btn {
53+ border-radius : 0px ;
54+ margin : 5px 0 ;
55+ font-family : 'ubuntu' ;
56+ }
57+
58+ button .btn {
59+ border-width : 1px ;
60+ font-family : 'Gilroy-Bold' ;
61+ }
62+
63+ .mobile h1 {
64+ font-size : 2rem ;
65+ margin-bottom : 30px ;
66+ }
67+
68+ .mobile h2 {
69+ font-size : 1.5rem ;
70+ }
71+
72+ .mobile .hero {
73+ margin : 20px 0 ;
74+ }
75+ </ style >
76+ {% endblock head %}
77+
78+ {% block body %}
79+ < div class =''>
80+ < div class ="container ">
81+ < div class ="row text-center ">
82+ <!-- desktop -->
83+ < div class ="col-md-12 hero desktop d-none d-sm-block d-md-block ">
84+ < h1 class ='font-weight-bold ' style ='color: #44A5F1 '>
85+ SEMANA DO PROGRAMADOR PROFISSIONAL
86+ </ h1 >
87+ < h2 class ='col-md-8 offset-md-2 '>
88+ Uma semana de vídeos e aulas que vão te ensinar como se
89+ < b > tornar um programador profissional</ b > em pouco tempo!
90+ </ h2 >
91+ < h3 class ='font-weight-bold col-md-8 offset-md-2 mt-4 '> 28/10 á 01/11</ h3 >
92+ </ div >
93+
94+ <!-- mobile -->
95+ < div class ="col-md-12 hero mobile d-block d-lg-none d-xl-none ">
96+ < h1 class ='font-weight-bold ' style ='color: #44A5F1 '>
97+ SEMANA DO PROGRAMADOR PROFISSIONAL
98+ </ h1 >
99+ < h2 class ='col-md-8 offset-md-2 '>
100+ Uma semana de vídeos e aulas que vão te ensinar como se
101+ < b > tornar um programador profissional</ b > em pouco tempo!
102+ </ h2 >
103+ < h3 class ='font-weight-bold col-md-8 offset-md-2 mt-4 '> 28/10 á 01/11</ h3 >
104+ </ div >
105+ </ div >
106+ </ div >
107+ </ div >
108+
109+ < div class ='bg-primary '>
110+ < div class ="container ">
111+ < div class ="row text-center ">
112+ < div class ="col hero ">
113+ < iframe width ="560 " height ="315 " src ="https://www.youtube.com/embed/{{ video_id }} " frameborder ="0 "
114+ allowfullscreen > </ iframe >
115+ </ div >
116+ </ div >
117+ </ div >
118+ </ div >
119+
120+ < div class ="container ">
121+ < div class ="row ">
122+ < div class ="col mb-5 mt-5 ">
123+ < div id ="fb-root "> </ div >
124+ < script async defer crossorigin ="anonymous "
125+ src ="https://connect.facebook.net/pt_BR/sdk.js#xfbml=1&version=v4.0&appId=1432926893644944&autoLogAppEvents=1 "> </ script >
126+ < div class ="fb-comment-embed " data-href ="{{ data_href }} " data-width ="560 " data-include-parent ="false "> </ div >
127+
128+ </ div >
129+ </ div >
130+ </ div >
131+
132+ < div class ='bg-primary pt-5 pb-5 '>
133+ < div class ="container text-white ">
134+ {% include 'core/social_proof.html' %}
135+ </ div >
136+ </ div >
137+
138+ {% endblock body %}
0 commit comments