Skip to content

Instantly share code, notes, and snippets.

@maki-t2nd
maki-t2nd / 01. index.html
Last active February 25, 2019 01:43
extendsうまくいかなかったとき
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
</head>
<body>
@include("/inc_hoge.html")
@include("/inc_fuga.html")
</body>
@maki-t2nd
maki-t2nd / out.json
Created December 5, 2018 06:50
what gule
[
{
"title": "title1",
"days": [
]
},
{
"title": "title2",
"days": [
"2018-12-06",
@maki-t2nd
maki-t2nd / calendar.html
Created November 6, 2018 09:17
get_renderedうまくいかないとき
<!-- 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>
@maki-t2nd
maki-t2nd / _base.html
Last active October 23, 2018 10:43
includeうまくいかなかったとき
<!DOCTYPE html>
<html lang="ja">
<head prefix="og: http://ogp.me/ns#">
</head>
<body>
@section(main)
@include("main.html")
@endsection