Hello World!

The first post on the website that showcases the theme's formatting features. It is useful to see the possibilities, to test theme changes, and to use it as a guide during content creation.

Share
Hello World!

The aim of this post is to showcase the theme’s formatting features, to test if the theme formatting works correctly on all platforms, and to provide examples for content creation.

Headings

There are six possible levels, from 1 to 6. I do not recommend using header 1 in posts as it conflicts with the post title styling.

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

This post can be written with Markdown too, and these headings were created with Markdown headings. The headers above are generated with the following code.

# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6

Markdown example code for headings

Paragraph

A paragraph (from Ancient Greek παράγραφος (parágraphos) ’to write beside’) is a self-contained unit of discourse in writing dealing with a particular point or idea. In Markdown terms, a paragraph is a block of text with one or more blank lines between them. The next paragraph is the famous Lorem ipsum.

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Tristique senectus et netus et. Mauris a diam maecenas sed. At imperdiet dui accumsan sit amet nulla facilisi morbi tempus. Nunc eget lorem dolor sed viverra ipsum nunc. Leo integer malesuada nunc vel risus commodo viverra. Sit amet consectetur adipiscing elit pellentesque habitant morbi. Sed ullamcorper morbi tincidunt ornare massa. Turpis egestas integer eget aliquet nibh praesent tristique magna. Diam in arcu cursus euismod quis. Leo in vitae turpis massa sed elementum tempus. Sed vulputate odio ut enim. At quis risus sed vulputate odio. At consectetur lorem donec massa sapien faucibus. Metus aliquam eleifend mi in.

Lists

Ordered list

  1. First item
  2. Second item
  3. Third item
1. First item
2. Second item
3. Third item

Markdown example code for ordered list

Unordered list

  • List item
  • Another item
  • And another item
* List item
* Another item
* And another item

Markdown example code for unordered list

Nested list

  • First item
  • Second item
    • Second item First subitem
    • Second item Second subitem
      • Second item Second subitem First sub-subitem
      • Second item Second subitem Second sub-subitem
      • Second item Second subitem Third sub-subitem
    • Second item Third subitem
      1. Second item Third subitem First sub-subitem
      2. Second item Third subitem Second sub-subitem
      3. Second item Third subitem Third sub-subitem
  • Third item

The above list with markdown.

* First item
* Second item
  * Second item First subitem
  * Second item Second subitem
    * Second item Second subitem First sub-subitem
    * Second item Second subitem Second sub-subitem
    * Second item Second subitem Third sub-subitem
  * Second item Third subitem
    1. Second item Third subitem First sub-subitem
    2. Second item Third subitem Second sub-subitem
    3. Second item Third subitem Third sub-subitem
* Third item

Markdown example code for nested list

It can be reproduced with HTML too.

<ul>
  <li>First item</li>
  <li>Second item
    <ul>
      <li>Second item First subitem</li>
      <li>Second item second subitem
        <ul>
          <li>Second item Second subitem First sub-subitem</li>
          <li>Second item Second subitem Second sub-subitem</li>
          <li>Second item Second subitem Third sub-subitem</li>
        </ul>
      </li>
      <li>Second item Third subitem
        <ol>
          <li>Second item Third subitem First sub-subitem</li>
          <li>Second item Third subitem Second sub-subitem</li>
          <li>Second item Third subitem Third sub-subitem</li>
        </ol>
    </ul>
  </li>
  <li>Third item</li>
</ul>

HTML example code for nested list

Definition list

HTML also supports definition lists.

Blanco tequila
The purest form of the blue agave spirit...
Reposado tequila
Typically aged in wooden barrels for between two and eleven months...
<dl>
  <dt>Blanco tequila</dt>
  <dd>The purest form of the blue agave spirit...</dd>
  <dt>Reposado tequila</dt>
  <dd>Typically aged in wooden barrels for between two and eleven months...</dd>
</dl>

HTML example code for definition list

Blockquotes

The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.

My goal wasn't to make a ton of money. It was to build good computers. I only started the company when I realized I could be an engineer forever.

Steve Wozniak
<blockquote>
  <p>My goal wasn't to make a ton of money. It was to build good computers. I only started the company when I realized I could be an engineer forever.</p>
  <footer>— <cite>Steve Wozniak</cite></footer>
</blockquote>

HTML example code for blockquotes

You can also use Markdown.

Quoted text.
This line is part of the same quote.
Also you can put Markdown into a blockquote.

> Quoted text.
> This line is part of the same quote.
> Also you can *put* **Markdown** into a blockquote.

Markdown example code for blockquotes

The composer supports only a simple blockquotes after > and a space.

Quoted text. This line is part of the same quote.

Tables

Creating tables in the Ghost CMS editor requires either native Markdown syntax or pasting HTML into a raw block. Ghost doesn’t have a built-in visual table-drawing button, so you will need to format your data with the corresponding import method.

ID Make Model Year
1 Honda Accord 2009
2 Toyota Camry 2012
3 Hyundai Elantra 2010
| ID  | Make      | Model   | Year |
| --- | --------- | ------- | ---- |
| 1   | Honda     | Accord  | 2009 |
| 2   | Toyota    | Camry   | 2012 |
| 3   | Hyundai   | Elantra | 2010 |

Colons can be used to align columns.

Tables Are Cool
align: left align: center align: right
align: left align: center align: right
align: left align: center align: right
| Tables      | Are           | Cool         |
|:----------- |:-------------:| ------------:|
| align: left | align: center | align: right |
| align: left | align: center | align: right |
| align: left | align: center | align: right |

You can also use inline Markdown.

Inline Markdown In Table
italics bold strikethrough code
| Inline     | Markdown  | In                | Table      |
| ---------- | --------- | ----------------- | ---------- |
| *italics*  | **bold**  | ~~strikethrough~~ | `code`     |

Code

Rust

// This is a comment, and is ignored by the compiler.

// This is the main function.
fn main() {
    // Statements here are executed when the compiled binary is called.

    // Print text to the console.
    println!("Hello World!");
}

Rust code example

HTML

{{< highlight html >}}
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>
{{< /highlight >}}

HTML code example

Images

A 400 x 400 placeholder image
A 600 x 400 placeholder image

Galleries

You can upload up to 9 images to a gallery.

Buttons

The color is always blue. It can be aligned to the left or to the center.

Call To Action (CTA)

With a lot of options, including changing the color of the button.

SPONSORED
CTA Image

Writing that worth clicking...

Learn more

Dividers

Dividers makes structuring your writing easier.


Bookmarks

Bookmarks to other content from the website.

About
Hi, I am Gabor Meszaros. I created this website to reflect and share what I learn in my professional life about people, product, project, or engineering management. About Gabor I am from Hungary. If it does not say much to you, do not worry, Hungary is a small country in

Example bookmark pointing to the About page

Callout

Tool to make short text to stand out from the content flow. Emoji is optional and can be anything. The color of the box is freely adjustable.

💡
Text worth reading...

Toggle

Collapsible content when a text isn't worth reading...

Toggle header

Collapsible content

Product

Can be used for product reviews or upsells. Rating and CTA are optional, but configurable.

Early Often

The best blog I have every read

Bring me there

GIFs

At the end of the day, what is the World without GIFs?

Example GIF

Other

You can upload files, music, link YouTube videos and such.