This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/_includes/partials/post-graph.liquid

19 lines
No EOL
513 B
Text

{% capture css %}
{% render "../../assets/styles/widgets/post-graph.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
<div class="post-graph">
{% assign years = postYears | reverse %}
{%- for year in years %}
<div class="post-graph__wrapper">
<div class="post-graph__year">{{ year.year }}</div>
<div class="post-graph__progress" style="width: {{ year.yearProgress }}%">
</div>
<div class="post-graph__data">
{{ year.postCount }}
</div>
</div>
{% endfor %}
</div>