-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathbase_generic.html
More file actions
93 lines (82 loc) · 4.61 KB
/
base_generic.html
File metadata and controls
93 lines (82 loc) · 4.61 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
<!DOCTYPE html>
<html lang="en">
<head>
{% block title %}<title>Free Oklahoma Courtdate Notifications</title>{% endblock %}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="friendly neighborhood court robot for getting court case information">
<meta name="author" content="Code for Tulsa">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
<!-- Add additional CSS in static file -->
{% load static %}
<link rel="stylesheet" href="{% static "css/styles.css" %}">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-132409583-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-132409583-1');
</script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="#">
{% load static %}
<img class="img-responsive img-center" src="{% static 'images/logo-no-border.png' %}" alt="Courtbot logo" style="width:150px;margin-right:10px;">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#form">Get Case Reminder</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#faq">FAQ</a>
</li>
</ul>
</div>
</div>
</nav>
{% block content %}{% endblock %}
<footer class="container-fluid text-center py-4" id="footer">
<p class="">© {% now "Y" %} <a target="_blank" href="https://www.codeforamerica.org/">Code for America</a>. This project is licensed under the Code for America <a href="https://github.com/codeforamerica/courtbot/blob/master/LICENSE">ISC license</a>. </p>
<div class="row justify-content-center">
<div class="col-sm-12">
<a class="mx-1" target="_blank" href="https://github.com/codefortulsa/courtbot-python">
<i class="fab fa-github fa-lg"></i>
</a>
<a class="mx-1" target="_blank" href="https://www.facebook.com/CourtBot-106405854094008/">
<i class="fab fa-facebook fa-lg"></i>
</a>
<a class="mx-1" href="https://m.me/CourtBot-106405854094008" target="_blank"><i class="fab fa-facebook-messenger fa-lg" style=""></i></a>
<a class="mx-1" href="https://slack.com/oauth/authorize?client_id=3558251564.770803254950&scope=bot,chat:write:bot,team:read" target="_blank"><i class="fab fa-slack-hash fa-lg" style=""></i></a>
<a class="mx-1" href="mailto:courtbotmuskogee@gmail.com" target="_blank"><i class="far fa-envelope fa-lg" style=""></i></a>
</div>
</div>
<!-- <h4>Join us on Facebook and Twitter for news and updates</h4>
<div class="row">
<div class="col-sm-12">
<a href="https://www.facebook.com/MuskogeeCountyCourtBot/"><i class="hero-icons fab fa-facebook-square fa-2x" style="font-size:3em; color:#3B5998"></i></a>
<a href="https://twitter.com/CodeforMuskogee"><i class="hero-icons fab fa-twitter-square fa-2x" style="font-size:3em; color:#08a0e9"></i></a>
</div>
</div> -->
</footer>
<script src="https://kit.fontawesome.com/4082aee318.js" crossorigin="anonymous"></script>
</body>
</html>