fix: render assignments

This commit is contained in:
Cory Dransfeldt 2023-07-08 13:12:43 -07:00
parent f162f04a6e
commit 669232428b
No known key found for this signature in database
8 changed files with 12 additions and 15 deletions

View file

@ -11,6 +11,6 @@
<p class="text-sm text-gray-500 dark:text-gray-100 pb-8 text-center">
<a class="text-gray-500 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-500{% if page.url == '/uses/' %} active{% endif %}" href="/uses">Uses</a> •
<a class="text-gray-500 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-500{% if page.url == '/referrals/' %} active{% endif %}" href="/referrals">Referrals</a> •
<a class="text-gray-500 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-500{% if page.url == '/referrals/' %} active{% endif %}" href="/reports/lighthouse/">Lighthouse</a>
<a class="text-gray-500 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-500" href="/reports/lighthouse/">Lighthouse</a>
</p>
</footer>

View file

@ -2,5 +2,5 @@
<h1 class="text-2xl md:text-3xl font-black leading-tight pb-5 md:pb-0">
<a class="text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-500" href="/">{{ site.title }}</a>
</h1>
{% render "partials/nav.liquid" %}
{% render "partials/nav.liquid", page: page %}
</div>

View file

@ -7,13 +7,13 @@
<a class="text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-500{% if page.url == '/about/' %} active{% endif %}" href="/about">About</a>
</li>
<li class="mr-6">
{% render "icons/tags.liquid" %}
{% render "icons/tags.liquid", page: page %}
</li>
<li class="mr-6 client-side">
{% render "icons/search.liquid" %}
{% render "icons/search.liquid", page: page %}
</li>
<li>
{% render "icons/rss.liquid" %}
{% render "icons/rss.liquid", page: page %}
</li>
</ul>
</nav>