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
<?php | |
l::set('your_username', 'Je gebruikersnaam'); | |
l::set('your_password', 'Je wachtwoord'); | |
l::set('log_in', 'Log in'); | |
l::set('log_in_error', 'Ongeldige gebruikersnaam of wachtwoord'); | |
l::set('log_out', 'Log uit'); | |
l::set('contact_us', 'Contact opnemen'); | |
l::set('view', 'Bekijk'); | |
l::set('download', 'Download'); |
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
<?php if(!defined('KIRBY')) exit ?> | |
title: | |
en: Timeline item | |
fr: Élément du flux d'activité | |
de: Neues Element in der Timeline | |
pages: false | |
files: true | |
preview: parent | |
fields: |
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
export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH" | |
export EDITOR='subl -w' | |
export SVN_REP="/Users/gunther/Documents/SVN" | |
export CLICOLOR=1 | |
# use yellow for directories | |
export LSCOLORS=dxfxcxdxbxegedabagacad |
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
if has('statusline') | |
set statusline=%<%f\ " Filename | |
set statusline+=%w%h%m%r " Options | |
set statusline+=%{fugitive#statusline()} " Git Hotness | |
set statusline+=\ [%{&ff}/%Y] " filetype | |
set statusline+=\ [%{getcwd()}] " current dir | |
set statusline+=%=%-14.(Line:\ %l\ of\ %L\ [%p%%]\ -\ Col:\ %c%V%) " Right aligned file nav info | |
endif |
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
call NERDTreeAddKeyMap({ | |
\ 'key': 'b', | |
\ 'callback': 'NERDTreeInsertImage', | |
\ 'quickhelpText': 'Insert XHTML tag of image' }) | |
function! NERDTreeInsertImage() | |
let n=g:NERDTreeFileNode.GetSelected() | |
if n!={} | |
let path=escape(n.path.str(),' ') | |
let theWH=substitute(system('identify -format %wx%h "'.path.'"'),'\n','','') |
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
div[class*="embossed"] { | |
background: #8ec12d; | |
color: #333; | |
text-shadow: 0 1px 1px rgba(255,255,255,0.9); | |
} | |
.embossed-light { | |
border: 1px solid rgba(0,0,0,0.05); | |
box-shadow: inset 0 1px 0 rgba(255,255,255,0.7); | |
} |
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
.inline-link-2 { | |
display: inline-block; | |
border-bottom: 2px dashed rgba(0,0,0,0.9); | |
/* Font styles */ | |
text-decoration: none; | |
color: #777; | |
} | |
.inline-link-2:hover { | |
border-bottom-style: dotted; |
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
.inline-link-3 { | |
display: inline-block; | |
position: relative; | |
padding-left: 6px; | |
/* Font styles */ | |
text-decoration: none; | |
color: #6AB3EC; | |
text-shadow: 0 1px 1px rgba(255,255,255,0.9); | |
} | |
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
.mac { | |
display: block; | |
border: none; | |
border-radius: 20px; | |
padding: 5px 8px; | |
color: #333; | |
box-shadow: | |
inset 0 2px 0 rgba(0,0,0,.2), | |
0 0 4px rgba(0,0,0,0.1); | |
} |
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
.depth { | |
display: block; | |
border: 1px solid rgba(255,255,255,0.6); | |
background: linear-gradient(#eee, #fff); | |
transition: all 0.3s ease-out; | |
box-shadow: | |
inset 0 1px 4px rgba(0,0,0,0.4); | |
padding: 5px; | |
color: #555; | |
} |
OlderNewer