Skip to content

Instantly share code, notes, and snippets.

@maki-t2nd
Last active October 23, 2018 10:43
Show Gist options
  • Save maki-t2nd/3b6b78c68313be9805c4060962d4da11 to your computer and use it in GitHub Desktop.
Save maki-t2nd/3b6b78c68313be9805c4060962d4da11 to your computer and use it in GitHub Desktop.
includeうまくいかなかったとき
<!DOCTYPE html>
<html lang="ja">
<head prefix="og: http://ogp.me/ns#">
</head>
<body>
@section(main)
@include("main.html")
@endsection
</body>
</html>
@extends("_base.html")
@section(main)
<!-- BEGIN_MODULE Entry_Field -->
@include("main.html", {"classes": "{layout}"})
<!-- END_MODULE Entry_Field -->
@endsection
@section(body)
@include("main_other.html")
@endsection
<main>
<article<!-- BEGIN_IF [{{classes}}/nem] --> class="{{classes}}"<!-- END_IF -->>
@section(body)
@include("body.html")
@endsection
</article>
</main>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment