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
/** | |
Genericons Helper CSS | |
*/ | |
/** | |
* The font was graciously generated by Font Squirrel (http://www.fontsquirrel.com). We love those guys. | |
*/ |
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
<h3>soft hyphen</h3> | |
a­b­c­d­e­f­g­h­i­j­k­l­m­n­o­p­q­r­s­t­u­v­w­x­y­z­a­b­c­d­e­f­g­h­i­j­k­l­m­n­o­p­q­r­s­t­u­v­w­x­y­z­a­b­c­d­e­f­g­h­i­j­k­l­m­n­o­p­q­r­s­t­u­v­w­x­y­z­a­b­c­d­e­f­g­h­i­j­k­l­m­n­o­p­q­r­s­t­u­v­w­x­y­z­a­b­c­d­e­f­g­h­i­j­k­l­m­n­o­p­q­r­s­t­u­v­w­x­y­z­ | |
<h3>wbr element</h3> | |
a<wbr />b<wbr />c<wbr />d<wbr />e<wbr />f<wbr />g<wbr />h<wbr />i<wbr />j<wbr />k<wbr />l<wbr />m<wbr />n<wbr />o<wbr />p<wbr />q<wbr />r<wbr />s<wbr />t<wbr />u<wbr />v<wbr />w<wbr />x<wbr />y<wbr / |
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
<h2>Select Box</h2> | |
<div class="color-3 pad-m corner"> | |
<form> | |
<select onChange="top.location.href=value"> | |
<option value="http://tenman.info/labo/snip/archives/4577#first">first</option><option value="http://tenman.info/labo/snip/archives/4577#second">second</option><option value="http://tenman.info/labo/snip/archives/4577#third">third</option> | |
</select> | |
</form> | |
</div> | |
<h2 id="first">First</h2> |
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 | |
/* | |
* Template Name: test | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { exit; } | |
global $rsidebar_show, $raindrops_document_type; | |
get_header( $raindrops_document_type ); | |
do_action( 'raindrops_pre_'.basename( __FILE__) ); | |
raindrops_debug_navitation( __FILE__ ); | |
?> |
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 | |
add_filter( 'raindrops_posted_in', 'my_add_comments' ); | |
function my_add_comments( $posted_in ) { | |
return $posted_in. raindrops_comments_link(); | |
} | |
function raindrops_comments_link() { |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html lang="ja" dir="ltr"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | |
<meta http-equiv="content-script-type" content="text/javascript"> | |
<meta http-equiv="content-style-type" content="text/css"> | |
<title>背景にblurをかけてぼかす</title> |
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 | |
/** | |
* Template Name: Grid Post | |
* | |
* | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { exit; } | |
do_action( 'raindrops_'. basename(__FILE__) ); | |
$raindrops_current_column = raindrops_show_one_column( ); | |
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 | |
/** | |
* Template Name: test category | |
* | |
* WordPress Static Page Template | |
*/ | |
?> | |
<ul style="text-align:left"> | |
<?php |
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
<!DOCTYPE html> | |
<html <?php language_attributes( ); ?>> | |
<head> | |
<meta http-equiv="content-type" content="<?php bloginfo( 'html_type' );?>; charset=<?php bloginfo( 'charset' ); ?>" /> | |
<title><?php wp_title( '|', true, 'right' ); ?></title> | |
<!--[if IE]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
<?php | |
global $raindrops_link_unique_text; |
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 | |
/** | |
* functions and constants for Raindrops theme | |
* | |
* | |
* @package Raindrops | |
* @since Raindrops 0.1 | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; |