site

personal website, served at mordaunt.dev/site
Log | Files | Refs

more-rich-content.md (848B)


      1 +++
      2 authors = ["Lone Coder"]
      3 title = "More Rich Content"
      4 date = "2023-07-11"
      5 description = "A brief description about Hugo Coder's Custom Shortcodes"
      6 tags = [
      7     "hugo",
      8     "markdown",
      9     "css",
     10     "html",
     11     "shortcodes",
     12 ]
     13 categories = [
     14     "theme demo",
     15     "syntax",
     16 ]
     17 series = ["Theme Demo"]
     18 +++
     19 
     20 Hugo Coder provides some Custom Shortcodes.
     21 
     22 ## <!--more-->
     23 
     24 ## Shortcodes Avisos
     25 
     26 {{< notice note >}}
     27 One note here.
     28 {{< /notice >}}
     29 
     30 {{< notice tip >}}
     31 I'm giving a tip about something.
     32 {{< /notice >}}
     33 
     34 {{< notice example >}}
     35 This is an example.
     36 {{< /notice >}}
     37 
     38 {{< notice question >}}
     39 Is this a question?
     40 {{< /notice >}}
     41 
     42 {{< notice info >}}
     43 Notice that this box contain information.
     44 {{< /notice >}}
     45 
     46 {{< notice warning >}}
     47 This is the last warning!
     48 {{< /notice >}}
     49 
     50 {{< notice error >}}
     51 There is an error in your code.
     52 {{< /notice >}}