php - set title page to h1 in yii2 -


set title page h1 in yii2?

in view :

$this->title = 'title' ; 

and source code :

<title>title</title> 

in view value assigned $this->title use in head , if useful in user view

<?php     $this->title = $model->id;  ?>  <head>     <meta charset="utf-8">     <meta name="viewport" content="width=device-width, initial-scale=1">     <title>my title  </title> <!-- seo -->     ... </head> <body>     <h1><?= $this->title ?> </h1> <!-- user view --> 

Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -