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
/* Complemento do wp-config.php */ | |
/** | |
WordPress database table prefix. | |
You can have multiple installations in one database if you give each | |
a unique prefix. Only numbers, letters, and underscores please! */ $table_prefix = 'wp_'; | |
/** | |
For developers: WordPress debugging mode. |
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
/* | |
Theme Name: Child Theme | |
Theme URI: http://childtheme.com | |
Description: Child Theme | |
Author: kilate.pro | |
Author URI: https://kilate.pro | |
Template: parent-theme | |
Version: 1.0.0 | |
License: GNU General Public License v2 or later | |
License URI: http://www.gnu.org/licenses/gpl-2.0.html |
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
html, body, p { | |
font-family: '', serif; | |
font-style: normal; | |
font-weight: normal; | |
letter-spacing: em; | |
} | |
body, p { | |
font-size: 17px; | |
letter-spacing: em; |
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
# protect wpconfig.php | |
<files wp-config.php> | |
order allow,deny | |
deny from all | |
</files> | |
# begin betabrandao | |
# compress text files – with WP Fastest Cache | |
<IfModule mod_deflate.c> | |
AddOutputFilterByType DEFLATE text/html |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
body { | |
background: #f06; | |
} | |
article { | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; | |
width: 50%; |