Merge branch 'main' of github.com:cdransf/coryd.dev

This commit is contained in:
Cory Dransfeldt 2024-05-29 20:47:30 -07:00
commit ff77bdaf36
No known key found for this signature in database
9 changed files with 36 additions and 12 deletions

View file

@ -43,7 +43,8 @@
{%- assign ogImage = meta.meta_data.opengraph_default -%}
{%- case schema -%}
{%- when 'blog' -%}
{%- assign ogImage = meta.url | append: '/assets/img/ogi/' | append: title | slugifyString | append: '-preview.png' -%}
{%- assign ogBlogSlug = title | slugifyString -%}
{%- assign ogImage = meta.url | append: '/assets/img/ogi/' | append: ogBlogSlug | append: '-preview.png' -%}
{%- when 'music' -%}
{%- assign ogImage = music.recent.artists[0].image -%}
{%- when 'music-index' -%}

View file

@ -13,7 +13,6 @@
<a href="{{ album.artist_url }}" title="Learn more about {{ album.artist | escape }}">
{{ album.artist }}
</a>
<span> • <a href="https://coryd.dev/music/genres/{{ album.genre | slugify | downcase }}" title="Learn more about {{ album.genre | escape }}">{{ album.genre }}</a></span>
</li>
{% endfor %}
</ul>

View file

@ -7,13 +7,6 @@
& .link-box {
border: 1px solid var(--gray-light);
padding: var(--sizing-xs) var(--sizing-sm);
position: relative;
}
& button {
position: absolute;
bottom: var(--sizing-sm);
right: var(--sizing-sm);
}
}

View file

@ -0,0 +1,7 @@
---
title: "Against optimization"
date: "2024-05-29T14:21:14-07:00"
tags: ['tech']
description: "One of the most inescapable edicts when leading a team is the order to optimize the system towards the organizations goals. It comes up across industries and at every conceivable stage of an organization, whether an early-stage startup optimizing for experimentation or a later-stage group optimizing for growth or an aged institution optimizing for preserving revenue."
link: "https://aworkinglibrary.com/writing/against-optimization"
---

View file

@ -21,7 +21,6 @@ permalink: "/links/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
</a>
{% if author %} via {{ author }}{% endif %}
{% render "partials/widgets/tags.liquid", tags:link.data.tags %}
{% render "partials/widgets/share-button.liquid", url:link.data.link, title:link.data.title, tagMap:collections.tagMap %}
</div>
{% endfor %}
</div>