Пытаюсь повторить пример из
документации с переопределением содержимого блока, но постоянно вываливается ошибка
Only named blocks and mixins can appear at the top level of an extending template
Вот код:
//index.pug
extends ../parts/head
block title1
title Test
body
include ../parts/right_menu
//head.pug
doctype html
html
head
block title
title Home - Elegant
link(rel="stylesheet" type="text/css" href = "../css/main.css")
link(rel="stylesheet" type="text/css" href = "../css/normalize.css")
meta(name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1")