Skip to content

Commit

Permalink
Add project count to title in projects tab
Browse files Browse the repository at this point in the history
(attempt 2)
  • Loading branch information
kubgus committed Sep 10, 2024
1 parent a622e7d commit 228f63f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/content/projects.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<h1>Random Project</h1>
<ProjectPreview :project="random_project" />

<h1>All { props.projects.length } Projects</h1>
<h1>All Projects <span class="faded">({{ props.projects.length }})</span></h1>
<div class="projects">
<ProjectPreview v-for="(project, index) in projects_sorted" :key="index" :project="project" />
</div>
Expand Down

0 comments on commit 228f63f

Please sign in to comment.