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

ファイルフォーマットの統一 #42

Merged
merged 2 commits into from
Apr 15, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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