smithtimmytim/brightlycolored.org

View on GitHub
_posts/2018-09-24-fix-broken-images-from-siteleaf.markdown

Summary

Maintainability
Test Coverage
---
title: Fix Broken Images from Siteleaf
date: 2018-09-24 21:41:00 -05:00
tags:
- development
- Jekyll
- Siteleaf
subtitle: Images weren't working for me, but I finally figured out what was wrong
custom_type: post
---

I recently started using Siteleaf to manage this site, and I had an issue with image uploads. Siteleaf puts images in an `_uploads` folder that Jekyll doesn't output by default.

To fix that, put the following in your `_config.yml` file:

```yaml
collection:
  uploads:
    title: Uploads
    output: true
```

VoilĂ ! Hope this helps you.