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 prefix="og: http://ogp.me/ns#"> | |
</head> | |
<body> | |
@section(main) | |
@include("main.html") | |
@endsection |
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
<!-- BEGIN_MODULE Calendar_Month ctx="{{ym}}" --> | |
<div> | |
<div> | |
<!-- BEGIN_SetRendered id="stryear" -->{year}<!-- END_SetRendered --> | |
<!-- BEGIN_SetRendered id="strmonth" -->{month}<!-- END_SetRendered --> | |
<h3 class="acms-text-center"><a href="{monthUrl}">{month}月</a></h3> | |
<ul class="acms-text-center acms-list-inline"> | |
<li><a href="{prevUrl}" class="acms-btn-flat" title="前月へ">«</a></li> | |
<li><a href="{yearUrl}" class="acms-btn-flat" title="年間カレンダーへ">{year}</a></li> | |
<li><a href="{nextUrl}" class="acms-btn-flat" title="次月へ">»</a></li> |
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
[ | |
{ | |
"title": "title1", | |
"days": [ | |
] | |
}, | |
{ | |
"title": "title2", | |
"days": [ | |
"2018-12-06", |
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="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>test</title> | |
</head> | |
<body> | |
@include("/inc_hoge.html") | |
@include("/inc_fuga.html") | |
</body> |