Skip to content

Commit

Permalink
Improve homepage content
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemulley committed Jan 23, 2024
1 parent 5d75978 commit 47501b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const url = Astro.url.pathname;
<meta charset="utf-8" />

{
title === site["site-title"] ? (
url === "/" ? (
<title>{site["site-title"]}</title>
) : (
<title>{[title, site["site-title"]].join(" | ")}</title>
Expand All @@ -37,7 +37,7 @@ const url = Astro.url.pathname;

<!-- Open Graph protocol (https://ogp.me) -->
{
title === site["site-title"] ? (
url === "/" ? (
<meta property="og:title" content={site["site-title"]} />
) : (
<meta
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Page.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const { frontmatter } = Astro.props;
<Layout title={frontmatter.title}>
<article>
<header>
<h1>{frontmatter.title}</h1>
<h1 set:html={frontmatter.title} />
{
!frontmatter.date ? (
""
Expand Down
8 changes: 5 additions & 3 deletions src/pages/index.mdx
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
---
title: Jake Mulley
title: 👋 Hello! I'm <a href="/" class="font-bold">Jake Mulley</a>.
layout: "../layouts/Page.astro"
---

import BlogPostList from "../components/BlogPostList.astro";

👋 I'm currently working in the [Platforms and Architecture](https://mojdigital.blog.gov.uk/) team at [Ministry of Justice](https://www.gov.uk/government/organisations/ministry-of-justice) as a **Principal Technical Architect**.
I'm currently working as a **[Principal Technical Architect](https://ddat-capability-framework.service.gov.uk/technical-architect.html#principal-technical-architect)** at the UK government's [Ministry of Justice](https://www.gov.uk/government/organisations/ministry-of-justice).

Before joining the Ministry of Justice, I spent 8 years as a software engineer in other public sector organisations, software-as-a-service companies, digital agencies, and more.

[Read more about me &rarr;](/about)

## Blog posts
## 📝 Blog posts

<BlogPostList />

0 comments on commit 47501b1

Please sign in to comment.