wip
This commit is contained in:
parent
9212cdb015
commit
13a3c1c866
28 changed files with 154 additions and 204 deletions
|
@ -1,9 +1,7 @@
|
|||
{% set classes = [
|
||||
'-mx-4 p-4 md:border-b-2 md:border-transparent md:ml-4 md:mr-0 md:p-0',
|
||||
loop.first ? 'border-t border-grey-lighter md:border-t-0 md:border-transparent',
|
||||
page.url matches '#' ~ pattern ~ '#' ? 'md:bg-transparent md:border-blue',
|
||||
] %}
|
||||
<a href="{{ href }}" class="{{ classes|join(' ')|trim }}">
|
||||
<a
|
||||
href="{{ href }}"
|
||||
class="block text-grey-darkest no-underline p-4 border-l-2 md:border-l-0 md:border-b-2 border-transparent md:ml-4 md:mr-0 md:p-0 hover:border-grey-light {{ loop.first ? 'border-t border-grey-lighter md:border-t-0 md:border-transparent' }} {{ page.url matches '#' ~ pattern ~ '#' ? 'border-blue' }}"
|
||||
>
|
||||
<span class="flex items-center h-full">
|
||||
{{- title -}}
|
||||
</span>
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
<div class="md:w-1/2 md:px-2 mb-4 flex">
|
||||
<div class="border p-3 w-full flex flex-col {{ project.versions ? 'justify-between' }}">
|
||||
<h3>
|
||||
<a href="{{ project.url }}">
|
||||
<a href="{{ project.url }}" class="text-black no-underline hover:underline focus:underline">
|
||||
{{ project.name }}
|
||||
</a>
|
||||
</h3>
|
||||
|
||||
<div class="flex-1">
|
||||
<div class="markdown flex-1">
|
||||
{{ project.description }}
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<div class="clearfix mt-4">
|
||||
<h2>About the Author</h2>
|
||||
|
||||
<div class="flex items-center">
|
||||
<div class="flex">
|
||||
<div class="mr-4 flex-none leading-none">
|
||||
<img
|
||||
src="{{ site.images_url }}{{ site.avatar.url }}"
|
||||
|
@ -10,6 +10,9 @@
|
|||
>
|
||||
</div>
|
||||
|
||||
<p class="mb-0">Oliver Davies is a full-stack Web Developer and System Administrator based in the UK. He is a {{ site.work.role }} at <a href="{{ site.companies[site.work.company].url }}?utm_source={{ site.short_url }}&utm_medium=about-author">{{ site.companies[site.work.company].name }}</a> and a part-time freelancer specialising in Drupal, Symfony and Laravel development and Linux systems administration.</p>
|
||||
<p class="mb-0">
|
||||
Oliver Davies is a full-stack Web Developer and System Administrator based in the UK.
|
||||
He is a {{ site.work.role }} at <a href="{{ site.companies[site.work.company].url }}?utm_source={{ site.short_url }}&utm_medium=about-author" class="link">{{ site.companies[site.work.company].name }}</a> and a part-time freelancer specialising in Drupal, Symfony and Laravel development and Linux systems administration.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
<div class="mb-4 italic text-grey-dark">
|
||||
<p>Questions? Comments? I’m <a href="https://twitter.com/{{ site.twitter.name }}">@{{ site.twitter.name }}</a> on Twitter.</p>
|
||||
</div>
|
|
@ -2,10 +2,10 @@
|
|||
<div class="widget lh-copy">
|
||||
<h2>Latest Blog Posts</h2>
|
||||
|
||||
<ul class="bullets">
|
||||
<ul class="pl-4">
|
||||
{% for post in data.posts|slice(0, site.latest_posts) %}
|
||||
<li>
|
||||
<a href="{{ post.url }}">
|
||||
<a href="{{ post.url }}" class="link">
|
||||
{{ post.title }}
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -31,11 +31,11 @@
|
|||
{% if not talk_page %}
|
||||
<td>
|
||||
{% if talk.talk.url is not empty %}
|
||||
<a href="{{ talk.talk.url }}">
|
||||
<a href="{{ talk.talk.url }}" class="link">
|
||||
{{ talk.talk.title }}
|
||||
</a>
|
||||
{% else %}
|
||||
{{ talk.talk.title }}
|
||||
{{ talk.talk.title }}
|
||||
{% endif %}
|
||||
|
||||
<div class="text-xs text-grey-dark">
|
||||
|
@ -50,7 +50,7 @@
|
|||
|
||||
<td>
|
||||
{% if talk.event.website is not empty %}
|
||||
<a href="{{ talk.event.website }}">
|
||||
<a href="{{ talk.event.website }}" class="link">
|
||||
{{ talk.event.name }}
|
||||
</a>
|
||||
{% else %}
|
||||
|
@ -69,7 +69,7 @@
|
|||
{% if talk.event.joindin and talk.event.date <= 'today'|date('Y-m-d') %}
|
||||
<a
|
||||
href="{{ talk.event.joindin }}"
|
||||
class="button"
|
||||
class="button no-underline"
|
||||
title="Read or leave feedback for this talk"
|
||||
>
|
||||
<i class="fa fa-comment-o"></i> joind.in
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue