Skip to content

Instantly share code, notes, and snippets.

@matsumos
Created September 25, 2012 07:38
Show Gist options
  • Save matsumos/3780473 to your computer and use it in GitHub Desktop.
Save matsumos/3780473 to your computer and use it in GitHub Desktop.
slimish-jinja2 で block を使う
slimish-jinja2 で block を使う
微妙にわかりにくかったのでメモ
base.slim
------------------------------------
!5
html
head
title
- block title
|  | website
index.html
------------------------------------
- extends "base.slim"
- block title
|hoge
= super()
- set active_page = "home"
で、タイトルに hoge | website って表示されるます
@matsumos
Copy link
Author

タイトルくらいだったら

set page_title ="home"

title =page_title | website

でよかった

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment