File tree Expand file tree Collapse file tree 2 files changed +80
-1
lines changed Expand file tree Collapse file tree 2 files changed +80
-1
lines changed Original file line number Diff line number Diff line change 1
1
< footer role ="contentinfo ">
2
2
< div class ="wrapper ">
3
- < nav class ="social-links "> {%- include social.html -%}</ nav >
3
+ < div class ="footer-grid ">
4
+ < div class ="footer-column ">
5
+ < h4 > About</ h4 >
6
+ < ul >
7
+ < li > < a href ="/about/ "> About BPD</ a > </ li >
8
+ < li > < a href ="/leadership "> Leadership</ a > </ li >
9
+ < li > < a href ="/mission "> Mission</ a > </ li >
10
+ < li > < a href ="/coc/ "> Code of Conduct</ a > </ li >
11
+ </ ul >
12
+ </ div >
13
+
14
+ <!-- Support Column -->
15
+ < div class ="footer-column ">
16
+ < h4 > Support</ h4 >
17
+ < ul >
18
+ < li > < a href ="# "> Support</ a > </ li >
19
+ </ ul >
20
+ </ div >
21
+
22
+ <!-- Programs and Events Column -->
23
+ < div class ="footer-column ">
24
+ < h4 > Programs and Events</ h4 >
25
+ < ul >
26
+ < li > < a href ="/events "> Events</ a > </ li >
27
+ < li > < a href ="/meetup "> Meetup</ a > </ li >
28
+ < li > < a href ="programs "> Programs</ a > </ li >
29
+ </ ul >
30
+ </ div >
31
+
32
+ <!-- Community Column -->
33
+ < div class ="footer-column ">
34
+ < h4 > Community</ h4 >
35
+ < ul >
36
+ < li > < a href ="/community.md "> Community</ a > </ li >
37
+ < li > {%- include social.html -%}</ li >
38
+ </ ul >
39
+ </ div >
40
+ </ div >
41
+
4
42
< div class ="footer-col-wrapper ">
5
43
< div class ="footer-col ">
6
44
< a href ="/coc/ "> Code of Conduct</ a >
Original file line number Diff line number Diff line change @@ -517,3 +517,44 @@ ul.speaking-list {
517
517
max-width : 60% ;
518
518
}
519
519
}
520
+
521
+ .footer-grid {
522
+ display : grid;
523
+ grid-template-columns : repeat (4 , 1fr ); /* 4 equal columns */
524
+ gap : 20px ; /* space between columns */
525
+ padding : 20px ;
526
+ }
527
+
528
+ .footer-column h4 {
529
+ margin-bottom : 10px ;
530
+ font-size : 16px ;
531
+ color : # 333 ;
532
+ }
533
+
534
+ .footer-column ul {
535
+ list-style : none;
536
+ padding : 0 ;
537
+ }
538
+
539
+ .footer-column ul li {
540
+ margin-bottom : 5px ;
541
+ }
542
+
543
+ .footer-column ul li a {
544
+ text-decoration : none;
545
+ color : # 666 ;
546
+ }
547
+
548
+ .footer-column ul li a : hover {
549
+ color : # 000 ;
550
+ }
551
+
552
+ .footer-col-wrapper {
553
+ text-align : center;
554
+ margin-top : 20px ;
555
+ }
556
+
557
+ footer small {
558
+ font-size : 12px ;
559
+ color : # 999 ;
560
+ }
You can’t perform that action at this time.
0 commit comments