apps/foo/templates/foo/index.html
{% load staticfiles %}
...
{# jQuery is global for third party modules #}
# Префиксы именования картинок | |
bgr- Фон | |
shadow- Тень | |
icon- Иконка | |
btn- Кнопка | |
img- Картинка | |
pattern- Текстура | |
sep- Разделитель | |
sprite- Спрайт |
[name^="anchor-"] { | |
display: block; | |
} |
! Molokai theme | |
! See: https://gist.github.com/vreon/845878 | |
xterm*background: #101010 | |
xterm*foreground: #d0d0d0 | |
xterm*cursorColor: #d0d0d0 | |
xterm*color0: #101010 | |
xterm*color1: #960050 | |
xterm*color2: #66aa11 | |
xterm*color3: #c47f2c | |
xterm*color4: #30309b |
! Atom One Light theme | |
xterm*background: #f9f9f9 | |
xterm*foreground: #383a42 | |
xterm*cursorColor: #d0d0d0 | |
xterm*color0: #000000 | |
xterm*color1: #E45649 | |
xterm*color2: #50A14F | |
xterm*color3: #986801 | |
xterm*color4: #4078F2 | |
xterm*color5: #A626A4 |
#!/bin/bash | |
# jade2html, version 0.1 | |
# | |
# Convert .jade to .html | |
# | |
# Example (convert foo.jade to foo.html): | |
# jade2html foo | |
# | |
# github.com/VovanR | |
# Author: VovanR (Vladimir Rodkin) |
const KEY_CODES = { | |
BACKSPACE: 8, | |
DELETE: 46, | |
}; | |
export default KEY_CODES; |