Last active
October 23, 2018 10:43
-
-
Save maki-t2nd/3b6b78c68313be9805c4060962d4da11 to your computer and use it in GitHub Desktop.
includeうまくいかなかったとき
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="ja"> | |
<head prefix="og: http://ogp.me/ns#"> | |
</head> | |
<body> | |
@section(main) | |
@include("main.html") | |
@endsection | |
</body> | |
</html> |
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
@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 |
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
<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