-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
151 lines (136 loc) · 5.04 KB
/
index.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
---
title: Open By-laws South Africa
layout: base
---
<div id="main-page">
<section class="welcome py-5">
<div class="container">
<div class="row">
<div class="col-sm-7 pb-3">
<h1>
South Africa's
<nobr>By-laws</nobr>
</h1>
<h3 class="font-weight-normal">
Freely available, easy to find, read and share.
</h3>
</div>
<div class="col-sm-5">
<div class="text-center">
<img class="logo" src="img/logo-lg.png">
</div>
</div>
</div>
<div class="mt-4">
<h5 class="text-center text-sm-left">
A project by
<a href="https://laws.africa">
<img alt="Laws.Africa" class="ml-2" src="img/lawsafrica-logo-horizontal.png" style="width: 150px">
</a>
</h5>
</div>
</div>
</section>
<section class="places py-5">
<div class="container">
<div class="mb-5">
{% include covid19_notice.html %}
<div>
Visit <a href="https://www.sacoronavirus.co.za">sacoronavirus.co.za</a> for more COVID-19 information.
</div>
</div>
<div class="row">
{% assign places = site.data.places | sort:"name" %}
{% for place in places %}
{% if place.microsite %}{% else %}{% if place.special %}{% else %}
<div class="col-md-4">
<a class="placard {{ place.code }}" href="/{{ place.code }}/eng/" style="background-image: url(/img/municipalities/{{ place.code }}-placard.jpg)">
<h3>{{ place.name }}</h3>
</a>
</div>
{% endif %}{% endif %}
{% endfor %}
</div>
<h5>Official municipal partners</h5>
<div class="row">
{% for place in places %}
{% if place.microsite %}{% if place.special %}{% else %}
<div class="col-md-4">
<a class="placard {{ place.code }}" href="https://{{ place.bucket }}/" style="background-image: url(/img/municipalities/{{ place.code }}-placard.jpg)">
<h3>{{ place.name }}</h3>
</a>
</div>
{% endif %}{% endif %}
{% endfor %}
</div>
</div>
</section>
<section class="about py-5">
<div class="container">
<h3>Anyone can help to make the law freely available</h3>
<div class="row">
<div class="col-md-8">
<p class="lead">
Open By-laws is maintained by the <a href="https://laws.africa">Laws.Africa</a> contributor community. Anyone can join the community and help to make African law freely available. You can help by adding new by-laws or keeping them up to date. Laws.Africa offers training and support.
</p>
<p>
<a href="https://laws.africa/faq">About the Laws.Africa Contributor Community →</a>
</p>
</div>
<div class="col-md-4">
<div class="social-buttons">
<p>
<a href="https://twitter.com/OpenByLawsZA" target="_blank">
<i class="fab fa-twitter"></i>
Follow @OpenByLawsZA on Twitter
</a>
</p>
<p>
<a href="https://www.facebook.com/openbylaws.org.za" target="_blank">
<i class="fab fa-facebook"></i>
Open By-laws on Facebook
</a>
</p>
</div>
<h4>Subscribe to the Laws.Africa newsletter</h4>
<p>For updates on new by-laws and other news.</p>
{% include newsletter.html %}
</div>
</div>
</div>
</section>
<section class="my-5">
<div class="container">
<div class="row">
<div class="col-md-9">
<h3>Powered by Laws.Africa</h3>
<p class="lead">Open By-laws is powered by the Laws.Africa legislation commons of African legislation.</p>
<p class="lead">
<a href="https://laws.africa">Laws.Africa</a> is a non-profit organisation that curates the African legislation commons and builds technology to enable free access to the law.
</p>
</div>
<div class="col-md-3 text-center align-self-center">
<img alt="Laws.Africa logo" class="my-3" src="img/lawsafrica-logo.png" style="width: 150px">
</div>
</div>
</div>
</section>
<section class="my-5">
<div class="container">
<div class="row">
<div class="col-md-8">
<h3>Use the by-laws in your app or website</h3>
<p class="lead">
Include the by-laws in your research, website, or app and build powerful interactive solutions for your users.
</p>
<p class="lead">
The by-laws are available as structured, machine-friendly Akoma Ntoso XML through the Laws.Africa Content API. Access rich content in HTML, PDF and ePub, and detailed metadata including publication and amendment information.
</p>
<p>
<a href="https://laws.africa/api/">About the Laws.Africa Content API →</a>
</p>
</div>
</div>
</div>
</section>
</div>