2016-03-04 18:37:24 +01:00
---
title: "Post: Image (Standard)"
categories:
- Post Formats
tags:
- image
- Post Formats
---
2016-03-07 15:51:50 +01:00
2016-03-15 19:11:31 +01:00
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.
2016-03-04 18:37:24 +01:00
2016-04-01 22:31:31 +02:00
Standard image with no width modifier classes applied.
**HTML:**
```html
{% raw %}< img src = "{{ site.url }}{{ site.baseurl }}/images/filename.jpg" alt = "" > {% endraw %}
```
**or Kramdown:**
```markdown
{% raw %}![alt]({{ site.url }}{{ site.baseurl }}/images/filename.jpg){% endraw %}
```
2016-03-15 17:55:19 +01:00
![Unsplash image 9 ]({{ site.url }}{{ site.baseurl }}/images/unsplash-image-9.jpg )
Image that fills page content container by adding the `.full` class with:
**HTML:**
```html
2016-04-01 22:31:31 +02:00
{% raw %}< img src = "{{ site.url }}{{ site.baseurl }}/images/filename.jpg" alt = "" class = "full" > {% endraw %}
2016-03-15 17:55:19 +01:00
```
**or Kramdown:**
```markdown
2016-04-01 22:31:31 +02:00
{% raw %}![alt]({{ site.url }}{{ site.baseurl }}/images/filename.jpg)
2016-03-15 17:55:19 +01:00
{: .full}{% endraw %}
```
![Unsplash image 10 ]({{ site.url }}{{ site.baseurl }}/images/unsplash-image-10.jpg )
{: .full}