Images in markdown

Hi all

I love file based CMS systems but I always had the problem with this:

I love to ahve some image grids in my blogs or full screen parallax images. But I cannot put html in the markdown file. Is there any way to just insert this in a markdown file and get it working?

-```

-```

Thanks!

First of all, HTML in markdown is perfectly valid, and there is nothing stopping you from doing it.

The second bit where you have some twig syntax in your markdown is valid also, but you must enable twig processing in the page header. So you can put:

process:
  twig: true

In the page header, then your code should work fine.

Thanks :)!

Are there any page variables that can grab the page title to use it in the page itself?

{{ page.header.title }} will display the title of the page

Thanks :)!