ok
Some checks failed
www2.ourworld.tf / Deploy (push) Has been cancelled

This commit is contained in:
2025-09-11 14:00:23 +02:00
parent 4ecce08e9f
commit f3d275a5f9
2 changed files with 7 additions and 3 deletions

View File

@@ -31,8 +31,8 @@
<nav class="flex space-x-10">
{% for page in section.pages %}
{% if page.extra.menu %} {% continue %} {% endif %}
<a href="{{page.permalink}}" class="text-lg leading-6 text-gray-900 focus:outline-none focus:text-gray-900 transition ease-in-out duration-150 mt-0">
{{page.title}}test
<a href="/#{{ page.title | lower }}" class="text-lg leading-6 text-gray-900 focus:outline-none focus:text-gray-900 transition ease-in-out duration-150 mt-0">
{{page.title}}
</a>
<div class="relative">
</div>
@@ -112,7 +112,6 @@
{% set section = get_section(path="footer/_index.md")%}
<div class="mx-8 mt-8">
<div class="space-y-8 lg:max-w-lg xl:max-w-lg lg:mr-8 lg:mb-8 xl:col-span-1">
<img class="w-48 h-auto" src="{{logo_path}}" alt="Company name" />
<p class="text-gray-500 text-base leading-6 ">
{{section.description}}
</p>

View File

@@ -48,6 +48,11 @@ Parameters:
{% set row_id = '' %}
{% if columns | length > 0 %}
{% set first_column = columns[0] | striptags | trim %}
{% set first_line = first_column | split(pat='\n') | first %}
{% set row_id = first_line | lower | slugify %}
{% endif %}
{% if id %}
{% set row_id = id %}