Skip to content

Commit 3f03a44

Browse files
committed
added image for SOE to front matter
1 parent 44c5369 commit 3f03a44

15 files changed

+17
-5
lines changed

_includes/staticman_comment.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<a href="{{ include.website }}" title="Link to author's website">
3434
{% endif %}
3535
<div class="mm mm-{{ include.name | strip | size | plus: y | modulo: 12 }}">{{ initial | upcase }}</div>
36-
<img src="/assets/images/mystery-man.png" alt="{{ include.name | escape }}" onerror="this.src='/assets/images/mystery-man.png';" width="50" height="50">
36+
<img src="/assets/images/mystery-man.png" alt="{{ include.name | escape | default: 'preview' }}" onerror="this.src='/assets/images/mystery-man.png';" width="50" height="50">
3737
</a>
3838
</div>
3939
<div class="comment-title">

_posts/2020-02-09-welcome-to-the-dungeons.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
tag: general
4+
image: "/assets/images/avatar.png"
45
title: "Welcome to the Dungeons"
56
date: 2020-02-09 16:15:59 +0000
67
comments: false

_posts/2020-02-12-why-the-dungeons.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
tag: general
4+
image: "/assets/images/avatar.png"
45
title: "Why \"The Dungeons\""
56
date: 2020-02-12 09:28:32 +0000
67
comments: false

_posts/2020-02-15-the-terraform-resource-lifecycle.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
tags: [ terraform, terraform-provider ]
4+
image: "/assets/images/terraform-refresh-plan-apply-badge.png"
45

56
title: "The Terraform Resource Lifecycle"
67
description: "I recently started working on Terraform Provider plugins. In this post I'm discussing the Terraform resource lifecycle."
@@ -12,7 +13,7 @@ comments: true
1213

1314
I recently started working on Terraform Provider plugins, but there doesn't seem to be much information about plugin-development out there on the internet. So I decided to collect some of my experience in a couple of posts.
1415

15-
![refresh-plan-apply.png](/assets/images/refresh-plan-apply.png)
16+
![refresh-plan-apply.png](/assets/images/terraform-refresh-plan-apply.png)
1617

1718
When applying a Terraform configuration,
1819

_posts/2020-02-17-implementing-a-terraform-provider.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
tags: [ terraform-provider ]
4+
image: "/assets/images/terraform-refresh-plan-apply-badge.png"
45

56
title: "Implementing A Terraform Provider"
67
description: "I recently started working on Terraform Provider plugins. In this post I'm showing how to implement a simple Terraform provider."
@@ -12,7 +13,7 @@ comments: true
1213

1314
I recently started working on Terraform Provider plugins, but there doesn't seem to be much information about plugin-development out there on the internet. So I decided to collect some of my experience in a couple of posts.
1415

15-
![refresh-plan-apply.png](/assets/images/refresh-plan-apply-small.png)
16+
![refresh-plan-apply.png](/assets/images/terraform-refresh-plan-apply-badge.png)
1617

1718
For more information about the Terraform resource lifecycle:
1819

_posts/2020-02-19-extending-the-terraform-resource-lifecycle.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
tags: [ terraform-provider ]
4+
image: "/assets/images/terraform-refresh-plan-apply-badge.png"
45

56
title: "Extending The Terraform Resource Lifecycle"
67
description: "I recently started working on Terraform Provider plugins. In this post I'm showing how to implement a couple of extensions to the Terraform resource lifecycle."
@@ -12,7 +13,7 @@ comments: true
1213

1314
I recently started working on Terraform Provider plugins, but there doesn't seem to be much information about plugin-development out there on the internet. So I decided to collect some of my experience in a couple of posts.
1415

15-
![refresh-plan-apply.png](/assets/images/refresh-plan-apply-small.png)
16+
![refresh-plan-apply.png](/assets/images/terraform-refresh-plan-apply-badge.png)
1617

1718
<br/>
1819

_posts/2020-02-27-the-terraform-plan.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
tags: [ terraform, terraform-provider ]
4+
image: "/assets/images/terraform-refresh-plan-apply-badge.png"
45

56
title: "The Terraform Plan"
67
description: "I recently started working on Terraform Provider plugins. In this post I'm discussing the Terraform plan."
@@ -12,7 +13,7 @@ comments: true
1213

1314
I recently started working on Terraform Provider plugins, but there doesn't seem to be much information about plugin-development out there on the internet. So I decided to collect some of my experience in a couple of posts.
1415

15-
![refresh-plan-apply.png](/assets/images/refresh-plan-apply.png)
16+
![refresh-plan-apply.png](/assets/images/terraform-refresh-plan-apply.png)
1617

1718
When applying a Terraform configuration,
1819

_posts/2020-03-01-notes-on-implementing-comments.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
tag: general
4+
image: "/assets/images/avatar.png"
45

56
title: "Notes On Implementing Comments"
67
description: "I added the possibility to leave comments to my posts on my jekyll site on Github Pages using Staticman. In this post I explain what I did and where I got my information from, and I provide some notes and gotchas based on my experience."

bookmarks.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
layout: page
3+
image: "/assets/images/avatar.png"
34
title: Bookmarks
45
toc: true
56
---

index.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
layout: home
3+
image: "/assets/images/avatar.png"
34
---
45

56
![avatar.png](/assets/images/avatar.png)

projects.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
layout: page
3+
image: "/assets/images/avatar.png"
34
title: Projects
45
toc: true
56
---

tools.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
layout: page
3+
image: "/assets/images/avatar.png"
34
title: Tools
45
toc: true
56
---

topics.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
22
layout: topics
3+
image: "/assets/images/avatar.png"
34
title: Topics
45
---

0 commit comments

Comments
 (0)