# ting **Repository Path**: dddxiu/ting ## Basic Information - **Project Name**: ting - **Description**: No description available - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-06-08 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #TB ## 模板布局 #### inherit ``` @inherit(parent_name) ``` - 单继承 - `parent`文件名称 #### space ``` @space(space_id) @div(space_id)...@enddiv ``` #### include ``` @include(name) ``` ## 变量输出 ``` {$name} ``` ## 流程控制 #### 条件判断 ``` @if($sex == 'male') 男 @ef($sex == 'female') 女 @el 未知 @fi ``` #### 循环 ``` @foreach($list as $key => $val)