-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1112 lines (1095 loc) · 40.3 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
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-GB" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="/xmlrpc.php" />
<!--[if lt IE 9]>
<script src="/wp-content/themes/twentyfifteen/js/html5.js"></script>
<![endif]-->
<script>
(function (html) {
html.className = html.className.replace(/\bno-js\b/, "js");
})(document.documentElement);
</script>
<title>
IMALI YETHU – Civil Society Coalition Working to Open Budgets
</title>
<meta name="robots" content="max-image-preview:large" />
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
<link href="https://fonts.gstatic.com/" crossorigin rel="preconnect" />
<link
rel="alternate"
type="application/rss+xml"
title="IMALI YETHU » Feed"
href="/feed/"
/>
<link
rel="alternate"
type="application/rss+xml"
title="IMALI YETHU » Comments Feed"
href="/comments/feed/"
/>
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {
baseUrl: "https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/",
ext: ".png",
svgUrl: "https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/",
svgExt: ".svg",
source: {
concatemoji: "\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.5.5",
},
};
/*! This file is auto-generated */
!(function (i, n) {
var o, s, e;
function c(e) {
try {
var t = { supportTests: e, timestamp: new Date().valueOf() };
sessionStorage.setItem(o, JSON.stringify(t));
} catch (e) {}
}
function p(e, t, n) {
e.clearRect(0, 0, e.canvas.width, e.canvas.height),
e.fillText(t, 0, 0);
var t = new Uint32Array(
e.getImageData(0, 0, e.canvas.width, e.canvas.height).data
),
r =
(e.clearRect(0, 0, e.canvas.width, e.canvas.height),
e.fillText(n, 0, 0),
new Uint32Array(
e.getImageData(0, 0, e.canvas.width, e.canvas.height).data
));
return t.every(function (e, t) {
return e === r[t];
});
}
function u(e, t, n) {
switch (t) {
case "flag":
return n(e, "🏳️⚧️", "🏳️⚧️")
? !1
: !n(e, "🇺🇳", "🇺🇳") && !n(e, "🏴", "🏴");
case "emoji":
return !n(e, "🐦⬛", "🐦⬛");
}
return !1;
}
function f(e, t, n) {
var r =
"undefined" != typeof WorkerGlobalScope &&
self instanceof WorkerGlobalScope
? new OffscreenCanvas(300, 150)
: i.createElement("canvas"),
a = r.getContext("2d", { willReadFrequently: !0 }),
o = ((a.textBaseline = "top"), (a.font = "600 32px Arial"), {});
return (
e.forEach(function (e) {
o[e] = t(a, e, n);
}),
o
);
}
function t(e) {
var t = i.createElement("script");
(t.src = e), (t.defer = !0), i.head.appendChild(t);
}
"undefined" != typeof Promise &&
((o = "wpEmojiSettingsSupports"),
(s = ["flag", "emoji"]),
(n.supports = { everything: !0, everythingExceptFlag: !0 }),
(e = new Promise(function (e) {
i.addEventListener("DOMContentLoaded", e, { once: !0 });
})),
new Promise(function (t) {
var n = (function () {
try {
var e = JSON.parse(sessionStorage.getItem(o));
if (
"object" == typeof e &&
"number" == typeof e.timestamp &&
new Date().valueOf() < e.timestamp + 604800 &&
"object" == typeof e.supportTests
)
return e.supportTests;
} catch (e) {}
return null;
})();
if (!n) {
if (
"undefined" != typeof Worker &&
"undefined" != typeof OffscreenCanvas &&
"undefined" != typeof URL &&
URL.createObjectURL &&
"undefined" != typeof Blob
)
try {
var e =
"postMessage(" +
f.toString() +
"(" +
[JSON.stringify(s), u.toString(), p.toString()].join(
","
) +
"));",
r = new Blob([e], { type: "text/javascript" }),
a = new Worker(URL.createObjectURL(r), {
name: "wpTestEmojiSupports",
});
return void (a.onmessage = function (e) {
c((n = e.data)), a.terminate(), t(n);
});
} catch (e) {}
c((n = f(s, u, p)));
}
t(n);
})
.then(function (e) {
for (var t in e)
(n.supports[t] = e[t]),
(n.supports.everything =
n.supports.everything && n.supports[t]),
"flag" !== t &&
(n.supports.everythingExceptFlag =
n.supports.everythingExceptFlag && n.supports[t]);
(n.supports.everythingExceptFlag =
n.supports.everythingExceptFlag && !n.supports.flag),
(n.DOMReady = !1),
(n.readyCallback = function () {
n.DOMReady = !0;
});
})
.then(function () {
return e;
})
.then(function () {
var e;
n.supports.everything ||
(n.readyCallback(),
(e = n.source || {}).concatemoji
? t(e.concatemoji)
: e.wpemoji && e.twemoji && (t(e.twemoji), t(e.wpemoji)));
}));
})((window, document), window._wpemojiSettings);
/* ]]> */
</script>
<style id="wp-emoji-styles-inline-css" type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link
rel="stylesheet"
id="wp-block-library-css"
href="/wp-includes/css/dist/block-library/style.min.css?ver=6.5.5"
type="text/css"
media="all"
/>
<style id="classic-theme-styles-inline-css" type="text/css">
/*! This file is auto-generated */
.wp-block-button__link {
color: #fff;
background-color: #32373c;
border-radius: 9999px;
box-shadow: none;
text-decoration: none;
padding: calc(0.667em + 2px) calc(1.333em + 2px);
font-size: 1.125em;
}
.wp-block-file__button {
background: #32373c;
color: #fff;
text-decoration: none;
}
</style>
<style id="global-styles-inline-css" type="text/css">
body {
--wp--preset--color--black: #000000;
--wp--preset--color--cyan-bluish-gray: #abb8c3;
--wp--preset--color--white: #ffffff;
--wp--preset--color--pale-pink: #f78da7;
--wp--preset--color--vivid-red: #cf2e2e;
--wp--preset--color--luminous-vivid-orange: #ff6900;
--wp--preset--color--luminous-vivid-amber: #fcb900;
--wp--preset--color--light-green-cyan: #7bdcb5;
--wp--preset--color--vivid-green-cyan: #00d084;
--wp--preset--color--pale-cyan-blue: #8ed1fc;
--wp--preset--color--vivid-cyan-blue: #0693e3;
--wp--preset--color--vivid-purple: #9b51e0;
--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(
135deg,
rgba(6, 147, 227, 1) 0%,
rgb(155, 81, 224) 100%
);
--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(
135deg,
rgb(122, 220, 180) 0%,
rgb(0, 208, 130) 100%
);
--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(
135deg,
rgba(252, 185, 0, 1) 0%,
rgba(255, 105, 0, 1) 100%
);
--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(
135deg,
rgba(255, 105, 0, 1) 0%,
rgb(207, 46, 46) 100%
);
--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(
135deg,
rgb(238, 238, 238) 0%,
rgb(169, 184, 195) 100%
);
--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(
135deg,
rgb(74, 234, 220) 0%,
rgb(151, 120, 209) 20%,
rgb(207, 42, 186) 40%,
rgb(238, 44, 130) 60%,
rgb(251, 105, 98) 80%,
rgb(254, 248, 76) 100%
);
--wp--preset--gradient--blush-light-purple: linear-gradient(
135deg,
rgb(255, 206, 236) 0%,
rgb(152, 150, 240) 100%
);
--wp--preset--gradient--blush-bordeaux: linear-gradient(
135deg,
rgb(254, 205, 165) 0%,
rgb(254, 45, 45) 50%,
rgb(107, 0, 62) 100%
);
--wp--preset--gradient--luminous-dusk: linear-gradient(
135deg,
rgb(255, 203, 112) 0%,
rgb(199, 81, 192) 50%,
rgb(65, 88, 208) 100%
);
--wp--preset--gradient--pale-ocean: linear-gradient(
135deg,
rgb(255, 245, 203) 0%,
rgb(182, 227, 212) 50%,
rgb(51, 167, 181) 100%
);
--wp--preset--gradient--electric-grass: linear-gradient(
135deg,
rgb(202, 248, 128) 0%,
rgb(113, 206, 126) 100%
);
--wp--preset--gradient--midnight: linear-gradient(
135deg,
rgb(2, 3, 129) 0%,
rgb(40, 116, 252) 100%
);
--wp--preset--font-size--small: 13px;
--wp--preset--font-size--medium: 20px;
--wp--preset--font-size--large: 36px;
--wp--preset--font-size--x-large: 42px;
--wp--preset--spacing--20: 0.44rem;
--wp--preset--spacing--30: 0.67rem;
--wp--preset--spacing--40: 1rem;
--wp--preset--spacing--50: 1.5rem;
--wp--preset--spacing--60: 2.25rem;
--wp--preset--spacing--70: 3.38rem;
--wp--preset--spacing--80: 5.06rem;
--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1),
6px 6px rgba(0, 0, 0, 1);
--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}
:where(.is-layout-flex) {
gap: 0.5em;
}
:where(.is-layout-grid) {
gap: 0.5em;
}
body .is-layout-flex {
display: flex;
}
body .is-layout-flex {
flex-wrap: wrap;
align-items: center;
}
body .is-layout-flex > * {
margin: 0;
}
body .is-layout-grid {
display: grid;
}
body .is-layout-grid > * {
margin: 0;
}
:where(.wp-block-columns.is-layout-flex) {
gap: 2em;
}
:where(.wp-block-columns.is-layout-grid) {
gap: 2em;
}
:where(.wp-block-post-template.is-layout-flex) {
gap: 1.25em;
}
:where(.wp-block-post-template.is-layout-grid) {
gap: 1.25em;
}
.has-black-color {
color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-color {
color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-color {
color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-color {
color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-color {
color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-color {
color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-color {
color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-color {
color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-color {
color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-color {
color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-color {
color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-color {
color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-background-color {
background-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-background-color {
background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-background-color {
background-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-background-color {
background-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-background-color {
background-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-background-color {
background-color: var(
--wp--preset--color--luminous-vivid-orange
) !important;
}
.has-luminous-vivid-amber-background-color {
background-color: var(
--wp--preset--color--luminous-vivid-amber
) !important;
}
.has-light-green-cyan-background-color {
background-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-background-color {
background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-background-color {
background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-background-color {
background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-background-color {
background-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-border-color {
border-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-border-color {
border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-border-color {
border-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-border-color {
border-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-border-color {
border-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-border-color {
border-color: var(
--wp--preset--color--luminous-vivid-orange
) !important;
}
.has-luminous-vivid-amber-border-color {
border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-border-color {
border-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-border-color {
border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-border-color {
border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-border-color {
border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-border-color {
border-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
background: var(
--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple
) !important;
}
.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
background: var(
--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan
) !important;
}
.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
background: var(
--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange
) !important;
}
.has-luminous-vivid-orange-to-vivid-red-gradient-background {
background: var(
--wp--preset--gradient--luminous-vivid-orange-to-vivid-red
) !important;
}
.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
background: var(
--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray
) !important;
}
.has-cool-to-warm-spectrum-gradient-background {
background: var(
--wp--preset--gradient--cool-to-warm-spectrum
) !important;
}
.has-blush-light-purple-gradient-background {
background: var(--wp--preset--gradient--blush-light-purple) !important;
}
.has-blush-bordeaux-gradient-background {
background: var(--wp--preset--gradient--blush-bordeaux) !important;
}
.has-luminous-dusk-gradient-background {
background: var(--wp--preset--gradient--luminous-dusk) !important;
}
.has-pale-ocean-gradient-background {
background: var(--wp--preset--gradient--pale-ocean) !important;
}
.has-electric-grass-gradient-background {
background: var(--wp--preset--gradient--electric-grass) !important;
}
.has-midnight-gradient-background {
background: var(--wp--preset--gradient--midnight) !important;
}
.has-small-font-size {
font-size: var(--wp--preset--font-size--small) !important;
}
.has-medium-font-size {
font-size: var(--wp--preset--font-size--medium) !important;
}
.has-large-font-size {
font-size: var(--wp--preset--font-size--large) !important;
}
.has-x-large-font-size {
font-size: var(--wp--preset--font-size--x-large) !important;
}
.wp-block-navigation a:where(:not(.wp-element-button)) {
color: inherit;
}
:where(.wp-block-post-template.is-layout-flex) {
gap: 1.25em;
}
:where(.wp-block-post-template.is-layout-grid) {
gap: 1.25em;
}
:where(.wp-block-columns.is-layout-flex) {
gap: 2em;
}
:where(.wp-block-columns.is-layout-grid) {
gap: 2em;
}
.wp-block-pullquote {
font-size: 1.5em;
line-height: 1.6;
}
</style>
<link
rel="stylesheet"
id="twentyfifteen-fonts-css"
href="https://fonts.googleapis.com/css?family=Noto+Sans%3A400italic%2C700italic%2C400%2C700%7CNoto+Serif%3A400italic%2C700italic%2C400%2C700%7CInconsolata%3A400%2C700&subset=latin%2Clatin-ext"
type="text/css"
media="all"
/>
<link
rel="stylesheet"
id="genericons-css"
href="/wp-content/themes/twentyfifteen/genericons/genericons.css?ver=3.2"
type="text/css"
media="all"
/>
<link
rel="stylesheet"
id="twentyfifteen-style-css"
href="/wp-content/themes/twentyfifteen/style.css?ver=6.5.5"
type="text/css"
media="all"
/>
<!--[if lt IE 9]>
<link
rel="stylesheet"
id="twentyfifteen-ie-css"
href="/wp-content/themes/twentyfifteen/css/ie.css?ver=20141010"
type="text/css"
media="all"
/>
<![endif]-->
<!--[if lt IE 8]>
<link
rel="stylesheet"
id="twentyfifteen-ie7-css"
href="/wp-content/themes/twentyfifteen/css/ie7.css?ver=20141010"
type="text/css"
media="all"
/>
<![endif]-->
<script
type="text/javascript"
src="/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"
id="jquery-core-js"
></script>
<script
type="text/javascript"
src="/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"
id="jquery-migrate-js"
></script>
<link rel="https://api.w.org/" href="/wp-json/" />
<link
rel="EditURI"
type="application/rsd+xml"
title="RSD"
href="/xmlrpc.php?rsd"
/>
<meta name="generator" content="WordPress 6.5.5" />
<style type="text/css" id="twentyfifteen-header-css">
.site-header {
padding-top: 14px;
padding-bottom: 14px;
}
.site-branding {
min-height: 42px;
}
@media screen and (min-width: 46.25em) {
.site-header {
padding-top: 21px;
padding-bottom: 21px;
}
.site-branding {
min-height: 56px;
}
}
@media screen and (min-width: 55em) {
.site-header {
padding-top: 25px;
padding-bottom: 25px;
}
.site-branding {
min-height: 62px;
}
}
@media screen and (min-width: 59.6875em) {
.site-header {
padding-top: 0;
padding-bottom: 0;
}
.site-branding {
min-height: 0;
}
}
.site-title,
.site-description {
clip: rect(1px, 1px, 1px, 1px);
position: absolute;
}
</style>
<style type="text/css" id="custom-background-css">
body.custom-background {
background-color: #dddbd7;
}
</style>
<link
rel="icon"
href="/wp-content/uploads/2017/11/cropped-cropped-Imali-Yethu_Logo_FINAL-2-32x32.png"
sizes="32x32"
/>
<link
rel="icon"
href="/wp-content/uploads/2017/11/cropped-cropped-Imali-Yethu_Logo_FINAL-2-192x192.png"
sizes="192x192"
/>
<link
rel="apple-touch-icon"
href="/wp-content/uploads/2017/11/cropped-cropped-Imali-Yethu_Logo_FINAL-2-180x180.png"
/>
<meta
name="msapplication-TileImage"
content="/wp-content/uploads/2017/11/cropped-cropped-Imali-Yethu_Logo_FINAL-2-270x270.png"
/>
<style type="text/css" id="wp-custom-css">
/*
You can add your own CSS here.
Click the help icon above to learn more.
*/
.partner-logos {
padding: 20px;
}
.partner-logos img {
margin: 0px 20px 20px 0px;
height: 50px;
}
.blue-button {
padding: 10px;
background-color: #2caadf;
color: white;
border-bottom: 0px;
}
</style>
</head>
<body class="home blog custom-background wp-custom-logo">
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"
>Skip to content</a
>
<div id="sidebar" class="sidebar">
<header id="masthead" class="site-header" role="banner">
<div class="site-branding">
<a href="/" class="custom-logo-link" rel="home" aria-current="page"
><img
width="248"
height="344"
src="/wp-content/uploads/2017/11/cropped-Imali-Yethu_Logo_FINAL-2.png"
class="custom-logo"
alt="IMALI YETHU"
decoding="async"
fetchpriority="high"
srcset="
/wp-content/uploads/2017/11/cropped-Imali-Yethu_Logo_FINAL-2.png 248w,
/wp-content/uploads/2017/11/cropped-Imali-Yethu_Logo_FINAL-2-216x300.png 216w
"
sizes="(max-width: 248px) 100vw, 248px"
/></a>
<h1 class="site-title"><a href="/" rel="home">IMALI YETHU</a></h1>
<p class="site-description">
Civil Society Coalition Working to Open Budgets
</p>
<button class="secondary-toggle">Menu and widgets</button>
</div>
<!-- .site-branding -->
</header>
<!-- .site-header -->
<div id="secondary" class="secondary">
<nav id="site-navigation" class="main-navigation" role="navigation">
<div class="nav-menu">
<ul>
<li class="page_item page-item-285">
<a href="/285-2/">Contact</a>
</li>
<li class="page_item page-item-96">
<a href="/news-and-events/">News and Events</a>
</li>
<li class="page_item page-item-228">
<a href="/newsletter-archive-open/"
>Newsletter Archive: Open!</a
>
</li>
<li class="page_item page-item-150">
<a
href="/the-open-budget-survey-2017-transparency-and-participation-in-south-africa/"
>The Open Budget Survey</a
>
</li>
<li class="page_item page-item-110">
<a href="/__trashed/">Useful Resources</a>
</li>
<li class="page_item page-item-7">
<a href="/home/">What is IMALI YETHU?</a>
</li>
<li class="page_item page-item-300">
<a href="/a-gendered-approach-to-budgeting-in-south-africa/"
>A Gendered approach to budgeting in South Africa</a
>
</li>
<li class="page_item page-item-10">
<a href="/blog/">Blog</a>
</li>
</ul>
</div>
</nav>
<!-- .main-navigation -->
<nav
id="social-navigation"
class="social-navigation"
role="navigation"
>
<div class="menu">
<ul>
<li class="page_item page-item-285">
<a href="/285-2/"
><span class="screen-reader-text">Contact</span></a
>
</li>
<li class="page_item page-item-96">
<a href="/news-and-events/"
><span class="screen-reader-text">News and Events</span></a
>
</li>
<li class="page_item page-item-228">
<a href="/newsletter-archive-open/"
><span class="screen-reader-text"
>Newsletter Archive: Open!</span
></a
>
</li>
<li class="page_item page-item-150">
<a
href="/the-open-budget-survey-2017-transparency-and-participation-in-south-africa/"
><span class="screen-reader-text"
>The Open Budget Survey</span
></a
>
</li>
<li class="page_item page-item-110">
<a href="/__trashed/"
><span class="screen-reader-text">Useful Resources</span></a
>
</li>
<li class="page_item page-item-7">
<a href="/home/"
><span class="screen-reader-text"
>What is IMALI YETHU?</span
></a
>
</li>
<li class="page_item page-item-300">
<a href="/a-gendered-approach-to-budgeting-in-south-africa/"
><span class="screen-reader-text"
>A Gendered approach to budgeting in South Africa</span
></a
>
</li>
<li class="page_item page-item-10">
<a href="/blog/"
><span class="screen-reader-text">Blog</span></a
>
</li>
</ul>
</div>
</nav>
<!-- .social-navigation -->
<!-- .widget-area -->
</div>
<!-- .secondary -->
</div>
<!-- .sidebar -->
<div id="content" class="site-content">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<article
id="post-1"
class="post-1 post type-post status-publish format-standard hentry category-uncategorized"
>
<header class="entry-header">
<h2 class="entry-title">
<a href="/2017/11/09/hello-world/" rel="bookmark"
>Imali Yethu: Our Money</a
>
</h2>
</header>
<!-- .entry-header -->
<div class="entry-content">
<p>
Imali Yethu is a coalition of civil society organisations
working with the South African National Treasury to make
budget information more accessible, user-friendly and
empowering. We are committed to exploring co-creation to
achieve open, accountable governance. Our work is inspired by
the
<a
href="https://www.opengovpartnership.org/ogp-participation-co-creation-standards/"
>standards</a
>
of co-creation and participation envisioned by the Open
Government Partnership (OGP) that state;
</p>
<blockquote>
<p>
“Public participation is based on the belief that
those who are affected by a decision have a right to be
involved in the decision-making process”
</p>
</blockquote>
<p>
We believe the same is true of decision making within the
budget process.
</p>
<p>
The Coalition is representative of a unique group of civic
actors. Our Secretariat is currently comprised of a diverse
range of South African organisations including:
</p>
<ul>
<li>
<a href="http://www.psam.org.za/"
>The Public Service Accountability Monitor (PSAM)</a
>
</li>
<li>
<a style="font-size: revert" href="https://mobisam.net/"
>MobiSAM</a
>
</li>
<li>
<a style="font-size: revert" href="http://section27.org.za/"
>Section 2</a
><a
style="font-size: revert"
href="http://section27.org.za/"
>7 (S27)</a
>
</li>
<li>
<a href="https://www.spi.net.za/"
>Social Policy Initiative (SPI)</a
>
</li>
<li>
<a href="https://lrc.org.za/"
>The Legal Resources Centre (LRC)</a
>
</li>
<li>
<a href="https://myvotecounts.org.za/"
>My Vote Counts (MVC)</a
>
</li>
<li>
<a href="https://equaleducation.org.za/"
>Equal Education (EE)</a
>
</li>
<li>
<a href="https://eelawcentre.org.za/"
>Equal Education Law Centre (EELC)</a
>
</li>
</ul>
<p>
<span style="font-size: revert; color: initial"
>We’re also proud to name the </span
><a
style="font-size: revert"
href="https://www.opendemocracy.org.za/"
>Open Democracy Advice Centre</a
><span style="font-size: revert; color: initial">), </span
><a style="font-size: revert" href="http://www.r2k.org.za/"
>R2K</a
><span style="font-size: revert; color: initial">
and the </span
><a style="font-size: revert" href="http://www.sjc.org.za/"
>Social Justice Coalition </a
><span style="font-size: revert; color: initial"
>amongst our founding partners. </span
><span style="font-size: revert; color: initial"
>Our adventure has just begun and we’re eager to
grow!</span
>
</p>
<p style="text-align: left">
In 2017, the organisation
<a href="https://openup.org.za/">OpenUp</a> were contracted by
the National Treasury to develop an online budget data portal.
The portal – later named vulekamali through a process
that involved hundreds of South Africans was intentionally
designed using an agile approach. Through extensive
consultation with and input from the public – one of
the core objectives of vulekamali is to ensure user friendly,
credible and accessible budget and planning data.
</p>
<p style="text-align: left">
So what’s the fundamental thread that connects us?
</p>
<p style="text-align: left">
It’s a deep conviction that open, transparent public
budget processes and meaningful public participation are
integral components of any democratic society. We aren’t
interested in transparency for transparency’s sake. We
aren’t interested in participation for
participation’s sake. We’re invested in ensuring
that fiscal transparency and public participation contributes
to the social change we are working towards. What connects us?
Consider <em>any</em> single social justice problem faced by
the majority of South Africans today and there your answer is!
</p>
<p style="text-align: left">
<span style="font-weight: 400"
>Our main objectives are to:</span
>
</p>
<blockquote>
<ul>
<li>
<span style="font-weight: 400"
>Promote open and accountable governance through support
for South Africa’s commitments in the Open Government
Partnership</span
>
</li>
<li>
<span style="font-weight: 400"
>Promote an equitable and development orientated
allocation of public resource</span
>
</li>
<li>
<span style="font-weight: 400"
>Promote meaningful participation in budget
prioritisation by marginalised communities</span
>
</li>
<li>
<span style="font-weight: 400"