Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #42 from saneyuki/fmt
Browse files Browse the repository at this point in the history
ファイルフォーマットの統一
  • Loading branch information
saneyuki_s committed Apr 15, 2013
2 parents 77397f4 + d450199 commit a30bb57
Show file tree
Hide file tree
Showing 5 changed files with 1,736 additions and 1,721 deletions.
36 changes: 18 additions & 18 deletions 404.php
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(); ?>
57 changes: 29 additions & 28 deletions admin/admin.css
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;
}
82 changes: 41 additions & 41 deletions page.php
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(); ?>
Loading

0 comments on commit a30bb57

Please sign in to comment.