-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbase.html
More file actions
95 lines (80 loc) · 2.81 KB
/
Copy pathbase.html
File metadata and controls
95 lines (80 loc) · 2.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{% load pipeline %}
{% load static %}
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Meetup PythOnRio{% endblock %}</title>
<meta name="description" content="{% block description %}{% endblock %}">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
{% stylesheet "main" %}
{% javascript "main" %}
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<nav id="base-navbar" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="{% url 'index' %}">
<img src="{% static 'img/logo-pythonrio.png' %}" alt="Logo PythOnRio">
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="{% url "eventos" %}">Eventos</a></li>
<li><a href="/#social">Contato/Social</a></li>
</ul>
</div>
<div class="mobile-menu visible-xs-inline pull-right">
<a href="{% url "eventos" %}">Eventos</a>
<a href="/#social">Contato/Social</a>
</div>
</div>
</nav>
{% block content %}
{% endblock %}
<div id="social" class="seção">
<div class="container">
<div class="row">
<div class="col-xs-12">
<h2>Contato/Social</h2>
<hr />
</div>
</div>
<ul>
<li><a href="https://www.facebook.com/pythonrio"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.twitter.com/pythonrio"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://telegram.me/PythonRio"><i class="fa fa-telegram"></i></a></li>
<li><a href="https://github.com/pythonrio"><i class="fa fa-github"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCGl4xDZYUYGg4_aMah32yjQ"><i class="fa fa-youtube"></i></a></li>
<li><a href="mailto:pythonrio.contato@gmail.com"><i class="fa fa-envelope"></i></a></li>
</ul>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
var fixMenuOnTop = function(){
var navHeight = 80;
if ($(window).scrollTop() > navHeight) {
$('.navbar-default').addClass('on');
} else {
$('.navbar-default').removeClass('on');
}
};
fixMenuOnTop();
$(window).bind('scroll', function() {
fixMenuOnTop();
});
$('body').scrollspy({
target: '.navbar-default',
offset: 80
})
})
</script>
{% block extra-js %}{% endblock %}
</body>
</html>