adriavalles / utilists

Useful checklists for different situations.

Home Page:https://www.adriavalles.net/utilists

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

📝 utilists

Find useful lists for different occasions. Just an excuse to try Jekyll. 🙃

View this project live at https://www.adriavalles.net/utilists

⛑️ How to contribute

Found a typo? Want to add a missing item in a list? Want to add a list that may be useful to others? Feel free to open a pull request to add them!

If you don't know how to contribute to a GitHub repository, check the this guide.

Adding a missing item to a list

  1. Open the appropriate list file under _posts folder. In the "permalink" line you can find the URL that is being used.
  2. Add the missing item into the appropriate group.
items:
    - name: First group
        - 'First item'
        - 'Second item'
        - 'Missing item' <--- Add it here

Creating a new list

Create a new markdown file under _posts with the filename pattern like YYYY-MM-DD-TITLE.md, where YYYY is current year, MM current month, DD current day and TITLE the title of the new list.

Content should follow the following format (note the starting and ending --- and that there's no actual Markdown text:

---
layout: list
title: "List title"
permalink: "/list-slug-for-the-url/"
categories: [AnyCategory]

emoji: "An emoji that defines this list"
subtitle: "A subtitle that summarizes what's this list about."
description: "Longer description about this list."

items:
    - name: First group name
      items:
        - 'First item'
        - 'Second item'
        - 'Third item'
        - 'Fourth item'
    - name: Second group name
      items:
        - 'First item'
        - 'Second item'
        - 'Third item'
        - 'Fourth item'
---

Feeling lazy?

You can just create us an issue into our GitHub project and we will take care of it.

About

Useful checklists for different situations.

https://www.adriavalles.net/utilists


Languages

Language:Ruby 55.8%Language:HTML 35.6%Language:CSS 7.5%Language:JavaScript 1.1%