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
<mt:Setvarblock name="ogimage"><mt:EntryAssets sort_order="ascend" lastn="1"><$mt:AssetURL$></mt:EntryAssets></mt:Setvarblock> | |
<meta property="og:image" content="<mt:If name='ogimage'><$mt:Getvar name='ogimage'><mt:Else>イメージのURL</mt:If>"> |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Bootstrap Basic Template</title> | |
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css"> | |
<!--[if lt IE 9]> | |
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | |
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> |
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
#!/usr/bin/perl -w | |
my $result = `unzip MT-6.0.2.zip`; | |
print "Content-type: text/html\n\n$result"; |
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
<mt:SetVarBlock name="website_absolute_URL">http://<$mt:BlogHost$>/</mt:SetVarBlock> | |
<mt:Entries> | |
<h1><a href="<$mt:EntryPermalink replace="$website_absolute_URL","/"$><$mt:EntryTitle$></a></h1> | |
<$mt:EntryBody replace="$website_absolute_URL","/"$> | |
<$mt:EntryMore replace="$website_absolute_URL","/"$> | |
</mt:Entries> |
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
<$mt:StatsSnippet replace=' type="text/javascript"','' $> |
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
.fbcomments, | |
.fb_iframe_widget, | |
.fb_iframe_widget[style], | |
.fb_iframe_widget iframe[style], | |
.fbcomments iframe[style], | |
.fb_iframe_widget span{ | |
width: 100% !important; | |
} |
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
<div class="col-md-8 col-md-offset-2"></div> |
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
<div class="row"> | |
<div class="col-md-9 col-md-push-3">.col-md-9 .col-md-push-3</div> | |
<div class="col-md-3 col-md-pull-9">.col-md-3 .col-md-pull-9</div> | |
</div> |
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
<mt:SetVarBlock name="today"><$mt:Date format="%Y%j"%></mt:SetVarBlock> | |
<mt:Entries lastn="1" include_blogs="ブログID" category="カテゴリ名"> | |
<mt:SetVarBlock name="passed"><$mt:EntryDate format="%Y%j"%></mt:SetVarBlock> | |
<mt:SetVar name="passed" value="$today" op="sub"> | |
<mt:If name="passed" ge="-5"><span class="newmark">New!</span></mt:If> | |
<mt:If name="passed" ge="-640"><mt:If name="passed" le="-635"><span class="newmark">New!</span></mt:If> | |
</mt:If> | |
</mt:Entries> |
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
<div id="myModal" class="modal hide fade"> | |
<div class="modal-header"> | |
<a class="close" data-dismiss="modal" >×</a> | |
<h3>画像の説明(alt)</h3> | |
</div> | |
<div class="modal-body"> | |
<img alt="" src="画像" class="mt-image-none" style="" height="375" width="500"><!-- 527pxまでOK --> | |
</div> | |
<div class="modal-footer"> | |
<a href="#" class="btn" data-dismiss="modal" >閉じる</a> |
OlderNewer