Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.md « coffee-ipsum « blog « en « content « exampleSite - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97a3029075a16602778da8ed135b4f3182c978f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
title: "Post with Images Example"
date: 2022-02-20T12:04:16-05:00
tags: ["images"]
series: ["example posts"]
---

Images can be added to posts using Markdown syntax:

```md
![Sample image](workday.jpg)
```

Which looks like this:

![Sample image](workday.jpg)

You can also use Hugo's built-in [figure shortcode](https://gohugo.io/content-management/shortcodes/#figure). This lets you add a caption, and looks like this:

{{< figure src="workday.jpg" title="Black and white work day photo." >}}

Posts with images are great at capturing attention and showcasing your work. Why not try it today?