Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsbruce committed Dec 5, 2024
1 parent 718b7ac commit 0d138df
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

{% assign tab_id=include.tab %}

{% assign entries = site.data.testamonials.entries | where_exp:"item", "item.published == true" | where_exp:"item", "item.tabs contains tab_id" %}
{% assign entries = site.data.testimonials.entries | where_exp:"item", "item.published == true" | where_exp:"item", "item.tabs contains tab_id" %}

{% for entry in entries %}
<div style="display: flex; flex-direction: row;">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
layout: default
permalink: "/personal-testamonials/"
permalink: "/personal-testimonials/"
---

{% assign page_tabs = "" | split: ',' %}

{% for tab in site.data.testamonials.tabs %}
{% for tab in site.data.testimonials.tabs %}
{% assign page_tabs = page_tabs | push: tab %}
{% endfor %}

Expand All @@ -27,7 +27,7 @@ permalink: "/personal-testamonials/"
<div id="{{tab_id}}" class="tabcontent">
{% endif %}

{% include testamonials_by_tab.html tab=tab_id %}
{% include testimonials_by_tab.html tab=tab_id %}

</div>

Expand Down
10 changes: 5 additions & 5 deletions _pages/sales-engineering.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ tabs:
button: "TL;DR"
- id: record
button: "Track Record"
- id: testamonials
button: "Testamonials"
- id: testimonials
button: "Testimonials"
- id: summary
button: "Values"
---
Expand Down Expand Up @@ -81,13 +81,13 @@ I now know that my balance of successful and happy lives in sales engineering.

</div>

<div id="testamonials" class="tabcontent">
<div id="testimonials" class="tabcontent">

<div style="display:flex;flex-direction:row-reverse;">
<a href="/personal-testamonials/">More testamonials</a>
<a href="/personal-testimonials/">More testimonials</a>
</div>

{% include testamonials_by_tab.html tab="sales" default_tab="sales" %}
{% include testimonials_by_tab.html tab="sales" default_tab="sales" %}

</div>

Expand Down

0 comments on commit 0d138df

Please sign in to comment.