title | categories | tags | |||
---|---|---|---|---|---|
Post: Image (Standard) |
|
|
The preferred way of using images is placing them in the /images/
directory and referencing them with an absolute path. Prepending the filename with {% raw %}{{ site.url }}{{ site.baseurl }}/images/{% endraw %}
will make sure your images display properly in feeds and such.

Image that fills page content container by adding the .full
class with:
HTML:
<img src="/images/filename.jpg" alt="" class="full">
or Kramdown:
{% raw %}
{: .full}{% endraw %}
 {: .full}