如何在twig中包含父目录中的模板

时间:2016-04-17 13:40:27

标签: php twig

我当前在views / pages / edit.twig文件中,并希望包含上层目录中的文件。 在PHP中通常你会做

- (instancetype)initWithFrame:(CGRect)frame {

  self = [super initWithFrame:frame];
  if (self) {
    UIView *view =
        [[[NSBundle mainBundle] loadNibNamed:@"myView"
                                     owner:self
                                     options:nil] objectAtIndex:0];

    [self attachContentView:view];
  }

return self;

}


- (void)attachContentView:(UIView *)contentView {
    CGRect frame = contentView.frame;

    frame.size.height -= self.headerView.frame.size.height;


  [contentView setFrame:frame];
  [self.contentView addSubview:contentView];
  [self layoutSubviews];

}

但我没有用树枝获取文件。 我没有使用Symfony,只使用twig模板引擎,所以没有捆绑等。

include '../file.php';

点在枝杈中不被识别为命令,我不知道如何到达那里。 我不想扩展任何东西,只包括一些带有一些文字的基本文件

0 个答案:

没有答案