File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,15 +3,13 @@ const { execSync } = require("child_process");
33module . exports = ( ) => {
44 const now = new Date ( ) ;
55
6- // Format the date: "Jan 26, 2026, 07:51 AM"
76 const timestamp = now . toLocaleString ( "en-US" , {
87 dateStyle : "medium" ,
98 timeStyle : "short" ,
109 } ) ;
1110
1211 let gitHash = "development" ;
1312 try {
14- // Get the short git hash (first 7 characters)
1513 gitHash = execSync ( "git rev-parse --short HEAD" ) . toString ( ) . trim ( ) ;
1614 } catch ( e ) {
1715 console . warn ( "Could not fetch git hash, defaulting to 'development'" ) ;
Original file line number Diff line number Diff line change 9898 {% include " footer.njk" %}
9999
100100 <script >
101- // Specific helper for the bio page email copy
102101 function copyToClipboard (text , el ) {
103102 navigator .clipboard .writeText (text);
104103 const span = el .querySelector (' span:last-child' );
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ layout: false
1616
1717 <main class =" max-w-7xl mx-auto px-4 py-12" >
1818 <div class =" grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8" >
19- {# We use collections.developer (or whichever tag you use in your .md files) #}
2019 {% for person in collections .randomPeople %}
2120 <div class =" user-card group bg-[var(--bg-card)] border border-[var(--border-color)] rounded-2xl overflow-hidden flex flex-col scroll-mt-32 transition-all hover:shadow-2xl hover:-translate-y-1" >
2221 <div class =" p-8" >
You can’t perform that action at this time.
0 commit comments