File tree Expand file tree Collapse file tree 5 files changed +252
-67
lines changed Expand file tree Collapse file tree 5 files changed +252
-67
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ standard:
68
68
founding_member : true
69
69
tier : " Standard"
70
70
contact :
" Michelle Barker <[email protected] >"
71
- - name : " Omnibond"
71
+ - name : " Omnibond (Project EUREKA!) "
72
72
url : https://omnibond.com/
73
73
figure : logo-omnibond.png
74
74
acronym :
@@ -92,3 +92,10 @@ premier:
92
92
date_joined : 2024-12-19
93
93
founding_member : true
94
94
tier : " Premier"
95
+ - name : " Princeton University"
96
+ url : https://princeton.edu
97
+ figure : logo-princeton.png
98
+ acronym : PU
99
+ date_joined : 2024-04-01 # I DONT KNOW WHAT DATE TO PUT HERE
100
+ founding_member : true
101
+ tier : " Premier"
Original file line number Diff line number Diff line change 27
27
</ div >
28
28
</ div >
29
29
</ section >
30
- {% unless page.hide_footer %}{% include footer.html %}{% endunless %}
31
- {% include footer-scripts.html %}
32
- {% if page.set_last_modified %}{% include last-modified.html %}{% endif %}
30
+
31
+ < a href ="#top " id ="back-to-top " title ="Back to Top " align ="center "> ⬆️ Back to top ⬆️</ a >
32
+
33
+ < script >
34
+ console . log ( 'Scroll event listener registered' ) ;
35
+ window . addEventListener ( "scroll" , function ( ) {
36
+ console . log ( 'scrolling...' , window . scrollY ) ;
37
+ var backToTopButton = document . getElementById ( "back-to-top" ) ;
38
+ if ( window . scrollY > 300 ) {
39
+ console . log ( 'Show button' ) ;
40
+ backToTopButton . style . display = "block" ;
41
+ } else {
42
+ console . log ( 'Hide button' ) ;
43
+ backToTopButton . style . display = "none" ;
44
+ }
45
+ } ) ;
46
+ </ script >
47
+
48
+ {% unless page.hide_footer %}{% include footer.html %}{% endunless %}
49
+ {% include footer-scripts.html %}
50
+ {% if page.set_last_modified %}{% include last-modified.html %}{% endif %}
51
+
33
52
</ body >
34
- </ html >
53
+ </ html >
You can’t perform that action at this time.
0 commit comments