A list of sketch plugins I'm really currently using.
-
Content Generator Create dummy data, lists, avatars, images timuric/content-generator-sketch-plugin
-
Style inventory getflourish/sketch-style-inventory
| #!/bin/bash -xe | |
| if [ "$#" -eq 0 ]; then | |
| echo "Usage: '$0 my-post-title'" | |
| exit 1 | |
| fi | |
| name=$(date +"%d-%m-%y")-$1 | |
| mkdir -p _posts | |
| touch "_posts/$name.md" | |
| mkdir -p "assets/$name" |
A list of sketch plugins I'm really currently using.
Content Generator Create dummy data, lists, avatars, images timuric/content-generator-sketch-plugin
Style inventory getflourish/sketch-style-inventory
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /> | |
| <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' /> | |
| <script src='https://api.tiles.mapbox.com/mapbox.js/v1.6.2/mapbox.js'></script> | |
| <link href='https://api.tiles.mapbox.com/mapbox.js/v1.6.2/mapbox.css' rel='stylesheet' /> | |
| </head> | |
| <body> | |
| <div id='map'></div> | |
| <script> |