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
| .container { | |
| margin: 0 auto; | |
| position: relative; | |
| } | |
| @media screen and (min-width: 1088px) { | |
| .container { | |
| max-width: 960px; | |
| width: 960px; | |
| } |
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
| const _ = require(`lodash`) | |
| const Promise = require(`bluebird`) | |
| const path = require(`path`) | |
| exports.createPages = ({ graphql, actions }) => { | |
| const { createPage } = actions | |
| const createPosts = new Promise((resolve, reject) => { | |
| const postTemplate = path.resolve(`./src/templates/blogTemplate.js`) | |
| resolve( | |
| graphql(` |
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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # <bitbar.title>Loadshedding Status</bitbar.title> | |
| # <bitbar.version>v0.2</bitbar.version> | |
| # <bitbar.author>Ronald Langeveld</bitbar.author> | |
| # <bitbar.author.github>ronaldlangeveld</bitbar.author.github> | |
| # <bitbar.image>https://i.imgur.com/JA7S0t7.png</bitbar.image> | |
| # <bitbar.desc>Shows the current Loadshedding 💩 status</bitbar.desc> | |
| # <bitbar.dependencies>python</bitbar.dependencies> | |
| # |
OlderNewer