-
Notifications
You must be signed in to change notification settings - Fork 3
/
default.html
190 lines (161 loc) · 8.27 KB
/
default.html
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% if page.title %}{{ page.title }} | {% endif %}{% if site.subsite_name %}{{ site.subsite_name }} | {% endif %}Socrata</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le Bootstrap-->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome by Dave Gandy - http://fontawesome.io/ -->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.css" rel="stylesheet"/>
<!-- Featherlight Lightbox -->
<link href="//cdn.rawgit.com/noelboss/featherlight/1.3.4/release/featherlight.min.css" rel="stylesheet"/>
<!-- MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['\\(','\\)']],
processEscapes: true
}
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<!-- Google Web Fonts -->
<link href="//fonts.googleapis.com/css?family=Ubuntu:bold" rel="stylesheet" type="text/css"/>
<link href="//fonts.googleapis.com/css?family=Nobile" rel="stylesheet" type="text/css"/>
<link href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.1.0/styles/default.min.css" rel="stylesheet"/>
<!-- CSS customizations -->
<link href="{{ site.baseurl }}/common/css/common.css" rel="stylesheet"/>
<link href="{{ site.baseurl }}/common/css/murphy.css" rel="stylesheet"/>
<link href="{{ site.baseurl }}/css/local.css" rel="stylesheet"/>
<!-- Page-level Customizations -->
{% for css in page.custom_css %}
<link href="{{ site.baseurl }}{{ css }}" rel="stylesheet"/>
{% endfor %}
<!-- Site-level Customizations -->
{% for css in site.custom_css %}
<link href="{{ site.baseurl }}{{ css }}" rel="stylesheet"/>
{% endfor %}
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Require.js is either the best thing to ever happen to me or my worst enemy -->
<script src="{{ site.baseurl }}/common/js/require.js"></script>
{% if site.xrayquire %}<script src="{{ site.baseurl }}/common/js/xrayquire.js"></script>{% endif %}
<script>
// Load common code and custom includes
requirejs(['{{ site.baseurl }}/common/js/common.js'], function(common) {
var rel_require = function(script) {
if(script.match(/^\/[^\/]/)) {
script = '{{ site.baseurl }}' + script;
}
requirejs([script]);
};
// Site scripts
{% for script in site.custom_js %}
rel_require('{{ script }}');
{% endfor %}
// Page scripts
{% for script in page.layout_js %}
rel_require('{{ script }}');
{% endfor %}
{% for script in page.custom_js %}
rel_require('{{ script }}');
{% endfor %}
});
</script>
<!-- Custom non-RequireJS dependencies -->
{% for script in page.custom_deps %}
<script src="{{ script }}"></script>
{% endfor %}
<!-- Browser Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.root }}/common/ico/apple-touch-icon-144-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.root }}/common/ico/apple-touch-icon-114-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ site.root }}/common/ico/apple-touch-icon-72-precomposed.png"/>
<link rel="shortcut icon" href="{{ site.root }}/common/ico/favicon.png"/>
<!-- Blog RSS -->
<link type="application/atom+xml" rel="alternate" href="https://dev.socrata.com/feed.xml" title="Socrata Developer Blog">
</head>
<body class="{{ site.subsite }} {{ page.bodyclass }} {{ page.name | split: "." | first }}">
<!-- Path: "{{page.path }}" -->
<!-- Header Nav -->
<div class="navbar navbar-inverse navbar-fixed-top {{ site.subsite }}" role="navigation">
<div class="container">
<!-- Current Site -->
<div class="navbar-header">
<!-- Collapse Button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#nav-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand {{ site.subsite }}" href="{% if site.root %}{{ site.baseurl }}/{% else %}/{% endif %}"><i class="{{ site.icon }}"></i> {{ site.title}}</a>
</div>
<div class="collapse navbar-collapse" id="nav-collapse">
<!-- Right side nav -->
<form class="navbar-form navbar-right visible-lg" action="{{ site.baseurl }}/search.html" method="GET" role="search">
<div class="form-group">
<input name="q" class="form-control search" type="text" placeholder="Search" aria-label="Search terms">
</div>
</form>
<!-- Nav elements -->
<ul class="nav navbar-nav">
{% include local-nav.html %}
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div id="acquisition-notice" class="alert forge-banner">
<div class="forge-banner__container">
<div class="forge-banner__container-wrapper">
<div class="forge-banner__container-wrapper-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" part="svg"><path d="M0 0h24v24H0V0z" fill="none" part="path"></path><path d="M11 7h2v2h-2V7zm0 4h2v6h-2v-6zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" part="path"></path></svg>
</div>
<div class="forge-banner__container-wrapper-subsection" part="subsection-wrapper">
<div class="forge-banner__container-wrapper-subsection-text forge-typography--body1" part="subsection-text">
Socrata was acquired by Tyler Technologies in 2018 and is now the Data and Insights division of Tyler. The platform is still powered by the same software formerly known as Socrata but you will see references to Data & Insights going forward.
</div>
<div class="forge-banner__container-wrapper-subsection-action" part="action-subsection">
<a href="https://www.tylertech.com/solutions/transformative-technology/data-insights">
<button type="button" class="forge-button forge-button--outlined mdc-ripple-upgraded">Learn more...<span class="forge-button__ripple"></span></button>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="socrata-status" class="alert" style="display: none;">
<div class="container">
<i class="fa fa-warning"></i>
<strong><span class="message"></span></strong>:
For more information see <a href="http://status.socrata.com">status.socrata.com</a>.
</div>
</div>
<div class="container-fluid content">
{% if site.splash %}
<div class="splash">
{% include splash.html %}
</div>
{% endif %}
{{content}}
<footer class="muted">
<hr />
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_US">
<img alt="Creative Commons License" src="https://licensebuttons.net/l/by-nc-sa/3.0/80x15.png" />
</a>
Licensed by <a xmlns:cc="http://creativecommons.org/ns#" href="https://www.tylertech.com/solutions/transformative-technology/data-insights" property="cc:attributionName" rel="cc:attributionURL">Tyler Technologies</a>
under <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en_US">CC BY-NC-SA 3.0</a>. Learn how <a href="{{ site.contribute }}">you can contribute!</a>
</footer>
</div> <!-- /container -->
{% if site.flags %}
<!-- Dump in our site config -->
<script type="text/javascript">
var flags = {{ site.flags | replace: "=>", ":" }}
</script>
{% endif %}
</body>
</html>