This commit is contained in:
@@ -31,8 +31,8 @@
|
|||||||
<nav class="flex space-x-10">
|
<nav class="flex space-x-10">
|
||||||
{% for page in section.pages %}
|
{% for page in section.pages %}
|
||||||
{% if page.extra.menu %} {% continue %} {% endif %}
|
{% 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">
|
<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}}test
|
{{page.title}}
|
||||||
</a>
|
</a>
|
||||||
<div class="relative">
|
<div class="relative">
|
||||||
</div>
|
</div>
|
||||||
@@ -112,7 +112,6 @@
|
|||||||
{% set section = get_section(path="footer/_index.md")%}
|
{% set section = get_section(path="footer/_index.md")%}
|
||||||
<div class="mx-8 mt-8">
|
<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">
|
<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 ">
|
<p class="text-gray-500 text-base leading-6 ">
|
||||||
{{section.description}}
|
{{section.description}}
|
||||||
</p>
|
</p>
|
||||||
|
@@ -48,6 +48,11 @@ Parameters:
|
|||||||
|
|
||||||
|
|
||||||
{% set row_id = '' %}
|
{% 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 %}
|
{% if id %}
|
||||||
{% set row_id = id %}
|
{% set row_id = id %}
|
||||||
|
Reference in New Issue
Block a user