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
| server { | |
| listen 80; | |
| server_name localhost; | |
| # $document_root にパスをセット | |
| root /var/www; | |
| location / { | |
| root /var/www; | |
| index index.php index.html index.htm; |
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 lang="<%template_language>"> | |
| <head> | |
| <meta charset="<%template_charset>"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="author" content="<%author_name>" /> | |
| <meta name="description" content="<%introduction>" /> | |
| <title><%blog_name><!--permanent_area--> |<%sub_title><!--/permanent_area--><!--date_area--> |<!--/date_area--><!--category_area--> |<!--/category_area--><!--not_permanent_area--><%sub_title><!--/not_permanent_area--></title> | |
| <link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" charset="<%template_charset>" /> | |
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
| <div class="container"> | |
| <div class="container-inner"> | |
| <!-- ヘッダ --> | |
| <div class="well" style="padding: 8px;"> | |
| <div class="header"> | |
| <div class="header-inner"> | |
| <div class="header-left"> | |
| <div class="header-left-inner"> |
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
| <div class="row"> | |
| <!-- Page Content --> | |
| <div class="container"> | |
| <div class="col-md-8"> | |
| <!--permanent_area--> | |
| <!--topentry--> | |
| <ul class="breadcrumb"> | |
| <li><a href="<%url>">HOME</a> <span class="divider">/</span></li> | |
| <li><!--parent_category--><a href="<%topentry_parent_category_link>"><%topentry_parent_category></a> <span class="divider">/</span><!--/parent_category--></li> |
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
| <div class="col-md-4"> | |
| <!--↓TAB 不要な時は削除してください--> | |
| <div class="well"> | |
| <ul class="nav nav-tabs"> | |
| <li class="active"><a href="#A" data-toggle="tab">Entry</a></li> | |
| <li><a href="#B" data-toggle="tab">Category</a></li> | |
| <li><a href="#C" data-toggle="tab">Archive</a></li> | |
| </ul> | |
| <div class="tab-content"style="margin-top:10px"> |
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
| <div class="clearfix"></div> | |
| <!-- フッタ --> | |
| <div class="footer"> | |
| <div class="footer-inner"> | |
| <small><address>Copyright © <%blog_name> All Rights Reserved.</address> | |
| <p>Powered by <a href="http://blog.fc2.com/" title="FC2 BLOG">FC2 Blog</a> <%ad> <%ad2></p></small> | |
| </div> | |
| </div> |
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
| <form class="form-horizontal"> | |
| <fieldset> | |
| <legend>Legend</legend> | |
| <div class="form-group"> | |
| <label for="inputEmail" class="col-lg-2 control-label">Email</label> | |
| <div class="col-lg-10"> | |
| <input type="text" class="form-control" id="inputEmail" placeholder="Email"> | |
| </div> | |
| </div> | |
| <div class="form-group"> |
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
| <!--commentform--> | |
| <form class="form-horizontal action="./" method="post" name="comment_form" id="comment_form""> | |
| <fieldset> | |
| <h4 class="sub_title"><%template_post_comment></h4> | |
| <input type="hidden" name="mode" value="regist" /> | |
| <input type="hidden" name="comment[no]" value="<%pno>" /> | |
| <div class="form-group"> | |
| <label for="name" class="col-md-2 control-label"><%template_name></label> | |
| <div class="col-md-6"> | |
| <input class="form-control" id="name" type="text" name="comment[name]" value="<%cookie_name>" /> |
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
| <!--trackback_area--> | |
| <form class="form-horizontal"> | |
| <fieldset> | |
| <div class="form-groupe> | |
| <div class="content" id="tb" > | |
| <h4 class="sub_header"><%template_trackback></h4> | |
| <div class="trackback" "col-md-6"> | |
| <input class="form-control" onfocus="this.select()" value="<%trackback_url>" readonly="readOnly" /><br /> | |
| <a href="javascript:window.location.replace('http://blog.fc2.com/?url='+window.location.href);" title="<%template_trackback_this>"><%template_trackback_this></a> | |
| </div> |
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 { | |
| color: #333; | |
| } | |
| /* ページ全体 */ | |
| body { |