Remove old link classes
This commit is contained in:
parent
a627849410
commit
606be23129
|
@ -24,8 +24,8 @@
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<p>
|
<p>
|
||||||
Built with <a class="link" href="https://sculpin.io">Sculpin</a> and <a class="link" href="https://tailwindcss.com">Tailwind CSS</a>,
|
Built with <a href="https://sculpin.io">Sculpin</a> and <a href="https://tailwindcss.com">Tailwind CSS</a>,
|
||||||
and hosted on <a class="link" href="https://www.netlify.com">Netlify</a>.
|
and hosted on <a href="https://www.netlify.com">Netlify</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<ul class="pl-4">
|
<ul class="pl-4">
|
||||||
{% for post in data.posts|slice(0, site.latest_posts) %}
|
{% for post in data.posts|slice(0, site.latest_posts) %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ post.url }}" class="link">
|
<a href="{{ post.url }}">
|
||||||
{{- post.title -}}
|
{{- post.title -}}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
{% if not talk_page %}
|
{% if not talk_page %}
|
||||||
<td class="whitespace-no-wrap xl:whitespace-normal">
|
<td class="whitespace-no-wrap xl:whitespace-normal">
|
||||||
{% if talk.talk.url is not empty %}
|
{% if talk.talk.url is not empty %}
|
||||||
<a href="{{ talk.talk.url }}" class="link">
|
<a href="{{ talk.talk.url }}">
|
||||||
{{ talk.talk.title }}
|
{{ talk.talk.title }}
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
<td class="whitespace-no-wrap xl:whitespace-normal">
|
<td class="whitespace-no-wrap xl:whitespace-normal">
|
||||||
{% if talk.event.url is not empty %}
|
{% if talk.event.url is not empty %}
|
||||||
<a href="{{ talk.event.url }}" class="link">
|
<a href="{{ talk.event.url }}">
|
||||||
{{ talk.event.name }}
|
{{ talk.event.name }}
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
|
@ -22,7 +22,7 @@ use:
|
||||||
{% for tag, post_count in rows|sort|reverse %}
|
{% for tag, post_count in rows|sort|reverse %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}" class="link">{{ tag }}</a>
|
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">{{ tag }}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>{{ post_count }}</td>
|
<td>{{ post_count }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -26,7 +26,7 @@ generator:
|
||||||
{% for post in page.tag_posts %}
|
{% for post in page.tag_posts %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ post.url }}" class="link">
|
<a href="{{ post.url }}">
|
||||||
{{ post.title }}
|
{{ post.title }}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -36,7 +36,7 @@ talks:
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p>
|
<p>
|
||||||
I regularly speak at conferences and user groups about a range of subjects including PHP, Drupal, automated testing, Git and systems administration.
|
I regularly speak at conferences and user groups about a range of subjects including PHP, Drupal, automated testing, Git and systems administration.
|
||||||
If you would like to me to speak at your group or conference, please <a href="/contact" class="link">get in touch</a>.
|
If you would like to me to speak at your group or conference, please <a href="/contact">get in touch</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="mb-6">
|
<div class="mb-6">
|
||||||
|
|
Reference in a new issue