This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| POSTS_FOLDER="./_posts" | |
| ASSETS_FOLDER="./assets" | |
| read -p "Post name: " POST_PRETTY_NAME | |
| read -p "Post categories: " POST_CATEGORIES | |
| # generate post info | |
| POST_DATE="$(date +%Y-%m-%d)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <resources> | |
| <!-- flat ui colors --> | |
| <!-- a transposition of the lovely colors from https://flatuicolors.com/ --> | |
| <color name="turqoise">#1abc9c</color> | |
| <color name="green_sea">#16a085</color> | |
| <color name="emerald">#2ecc71</color> | |
| <color name="nephritis">#27ae60</color> |
OlderNewer