Public Access
1
0

fix: update certifications to include expiration dates

This commit is contained in:
2025-08-11 22:59:09 -04:00
parent 7d58de70bc
commit 59fb872c39
2 changed files with 11 additions and 6 deletions

View File

@@ -1,22 +1,27 @@
[ [
{ {
"name": "JNCIA - DevOps", "name": "JNCIA - DevOps",
"earned": "July 2025" "earned": "July 2025",
"expires": "July 2028"
}, },
{ {
"name": "JNCIS - Service Provider", "name": "JNCIS - Service Provider",
"earned": "June 2025" "earned": "June 2025",
"expires": "June 2028"
}, },
{ {
"name": "JNCIS - Enterprise", "name": "JNCIS - Enterprise",
"earned": "March 2025" "earned": "March 2025",
"expires": "March 2028"
}, },
{ {
"name": "JNCIA - Junos", "name": "JNCIA - Junos",
"earned": "May 2023" "earned": "May 2023",
"expires": "July 2028"
}, },
{ {
"name": "CCNA", "name": "CCNA",
"earned": "April 2023" "earned": "April 2023",
"expires": "August 2026"
} }
] ]

View File

@@ -66,7 +66,7 @@ layout: "layout.njk"
<i class="fas fa-certificate icon text-yellow-400"></i> <i class="fas fa-certificate icon text-yellow-400"></i>
<div> <div>
<h4 class="font-bold text-white">{{ certification.name}}</h4> <h4 class="font-bold text-white">{{ certification.name}}</h4>
<p class="text-gray-400">Earned: {{ certification.earned}}</p> <p class="text-gray-400">Expires: {{ certification.expires}}</p>
</div> </div>
</div> </div>
{%- endfor -%} {%- endfor -%}