This file contains 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
$bold: 700; | |
$light: 300; | |
$brand-secondary: #CD5334; | |
// taille de la gouttière | |
$grid-gutter-width: 20px; | |
// taille du container desktop | |
$container-large-desktop: 1144px + $grid-gutter-width; | |
// arrondi des boutons, champs, etc |
This file contains 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
/* | |
Gravity Forms => 1.9 | |
*/ | |
add_filter('gform_form_args', 'no_ajax_on_all_forms', 10, 1); | |
function no_ajax_on_all_forms($args){ | |
$args['ajax'] = false; | |
return $args; | |
} |
This file contains 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 | |
# assuming a csv file with a name in column 0 and the image url in column 1 | |
import urllib | |
filename = "images" | |
# open file to read | |
with open("{0}.csv".format(filename), 'r') as csvfile: |