This repository has been archived by the owner on Dec 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from saneyuki/fmt
ファイルフォーマットの統一
- Loading branch information
Showing
5 changed files
with
1,736 additions
and
1,721 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
<?php | ||
/** | ||
* @package WordPress | ||
* @subpackage modest3 | ||
*/ | ||
|
||
get_header(); | ||
?> | ||
<artcle id="content"> | ||
<header class="entry-header"> | ||
<h1 class="post-title">Error 404 - Not Found</h1> | ||
</header> | ||
<div class="entry-body"> | ||
<p>ごめんなさい、リクエストされたページは見つかりません。</p> | ||
</div> | ||
</artcle> | ||
|
||
<?php get_footer(); ?> | ||
<?php | ||
/** | ||
* @package WordPress | ||
* @subpackage modest3 | ||
*/ | ||
|
||
get_header(); | ||
?> | ||
<artcle id="content"> | ||
<header class="entry-header"> | ||
<h1 class="post-title">Error 404 - Not Found</h1> | ||
</header> | ||
<div class="entry-body"> | ||
<p>ごめんなさい、リクエストされたページは見つかりません。</p> | ||
</div> | ||
</artcle> | ||
|
||
<?php get_footer(); ?> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
@charset "utf-8"; | ||
|
||
/* | ||
* style for admin page | ||
*/ | ||
|
||
.metadata-form-list { | ||
width: 97%; | ||
} | ||
.metadata-form-list > dd { | ||
margin-left: 0; | ||
margin-bottom: 1em; | ||
} | ||
.metadata-form-list > dd input { | ||
width: 100%; | ||
-moz-box-sizing: inherit; | ||
-webkit-box-sizing: inherit; | ||
-ms-box-sizing: inherit; | ||
box-sizing: inherit; | ||
} | ||
|
||
input:-moz-placeholder, | ||
textarea:-moz-placeholder { | ||
color: gray; | ||
} | ||
input::-webkit-input-placeholder, | ||
textarea::-webkit-input-placeholder { | ||
color: gray; | ||
@charset "utf-8"; | ||
|
||
/* | ||
* style for admin page | ||
*/ | ||
|
||
.metadata-form-list { | ||
width: 97%; | ||
margin-left: 0 auto; | ||
} | ||
.metadata-form-list > dd { | ||
margin-left: 0; | ||
margin-bottom: 1em; | ||
} | ||
.metadata-form-list > dd input { | ||
width: 100%; | ||
-moz-box-sizing: inherit; | ||
-webkit-box-sizing: inherit; | ||
-ms-box-sizing: inherit; | ||
box-sizing: inherit; | ||
} | ||
|
||
input:-moz-placeholder, | ||
textarea:-moz-placeholder { | ||
color: gray; | ||
} | ||
input::-webkit-input-placeholder, | ||
textarea::-webkit-input-placeholder { | ||
color: gray; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
<?php | ||
/** | ||
* @package WordPress | ||
* @subpackage modest3 | ||
*/ | ||
get_header(); | ||
?> | ||
|
||
<article id="content" | ||
role="main"> | ||
|
||
<?php | ||
if (have_posts()) : | ||
while (have_posts()) : | ||
the_post(); | ||
?> | ||
|
||
<header class="entry-header"> | ||
|
||
<h1 class="post-title"><?php the_title(); ?></h1> | ||
|
||
</header> | ||
|
||
|
||
<div class="entry-body"> | ||
<?php | ||
the_content('‘±‚«‚ð“Ç‚Þ'); | ||
?> | ||
</div> | ||
|
||
|
||
<?php | ||
endwhile; | ||
else: | ||
echo '<p>Sorry, no posts matched your criteria</p>'; | ||
endif; | ||
?> | ||
|
||
</article> | ||
|
||
<?php get_footer(); ?> | ||
<?php | ||
/** | ||
* @package WordPress | ||
* @subpackage modest3 | ||
*/ | ||
get_header(); | ||
?> | ||
|
||
<article id="content" | ||
role="main"> | ||
|
||
<?php | ||
if (have_posts()) : | ||
while (have_posts()) : | ||
the_post(); | ||
?> | ||
|
||
<header class="entry-header"> | ||
|
||
<h1 class="post-title"><?php the_title(); ?></h1> | ||
|
||
</header> | ||
|
||
|
||
<div class="entry-body"> | ||
<?php | ||
the_content('続きを読む'); | ||
?> | ||
</div> | ||
|
||
|
||
<?php | ||
endwhile; | ||
else: | ||
echo '<p>Sorry, no posts matched your criteria</p>'; | ||
endif; | ||
?> | ||
|
||
</article> | ||
|
||
<?php get_footer(); ?> |
Oops, something went wrong.