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
/** | |
* Syntax highlighting | |
* Colors from SublimeText theme "Spacegray" | |
* https://github.com/kkga/spacegray | |
*/ | |
.highlight { | |
background-color: #343d46; | |
color: white; |
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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>fileTypes</key> | |
<array> | |
<string>tks</string> | |
</array> | |
<key>name</key> | |
<string>Taxi</string> |
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
# WordPress multisite rewrite for subfolder install | |
rewrite ^/(xmlrpc\.php|wp-[0-9a-z-]+\.php) /wordpress/$1; | |
rewrite ^/(wp-(admin|includes).*) /wordpress/$1; | |
# Rewrite assets that lives in /content but has wrong URLs (YooTheme/Widgetkit) | |
rewrite ^(?!\/content)(?:.*)content[^.](.*) $scheme://$host/content/$1; |