panr / hugo-theme-hello-friend

Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!
https://github.com/panr/hugo-theme-hello-friend/
MIT License
1.06k stars 1.24k forks source link

[Question] How to add a text box as you did in the demo page? #270

Closed kneardhead closed 2 years ago

kneardhead commented 2 years ago

In the demo page, there's this block of text "Hello there! Welcome to the demo..." inside a box. I am new to Hugo sites, and I couldn't really implement such a text before the posts. I would appreciate your suggestions.

KenHV commented 2 years ago

Create content/_index.md with the following contents:

+++
framed = true
+++

You can add your desired text to the file.

kneardhead commented 2 years ago

@KenHV thanks a lot, it works!