Skip to content

Commit

Permalink
fix: external_url icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush committed Nov 20, 2024
1 parent 33e2852 commit 3703dd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/posts/frappe-mysql-talk.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: post
title: "[deck] MySQL Internals for Frappe Developers"
title: "MySQL Internals for Frappe Developers (slide deck)"
date: 2024-04-02
external_url: /assets/mysql_for_frappe_devs.pdf

Expand Down
2 changes: 1 addition & 1 deletion src/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<li>
<time datetime="{{ post.meta.date }}"> {{ format_date(post.meta.date, true) }} </time>
{%- if post.meta.external_url %}
<a href="{{ post.meta.external_url }}" >[external] {{ post.meta.title }}</a>
<a target="_blank" href="{{ post.meta.external_url }}" >{{ post.meta.title }} <span style="transform: rotate(90deg); display: inline-block"></span></a>
{% else %}
<a href="/p/{{ post.slug }}" >{{ post.meta.title }}</a>
{%- endif %}
Expand Down

0 comments on commit 3703dd6

Please sign in to comment.