We learned about the use of the subject of a label, this one we will talk about how the main document contains another theme:
We see the system default theme file "index.html" the first line of code and the last line of code are:
{include file="public/default/header.html" /}
{include file="public/default/footer.html" /}
This means that the index.html file introduces two files, the header file header.html and the footer file footer.html.
Header and footer files are also introduced in article.html and category.html files to reduce duplication.
For example, the following code:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{$title} | {$subtitle}</title>
<meta name="keywords" content="{$keyword}">
<meta name="description" content="{$description}">
</head>
<body>
Web page content</body>
</html>
You can place the top portion of the Page Content into the header file and put the two lines of code below the Page Content into the footer file. Then this file looks like this is the following:
{include file="public/default/header.html" /}
Web page content
{include file="public/default/footer.html" /}
When several files have the same page header and footer files, we save a lot of code, of course, you can also choose not to page header and footer files.
Note: Replace the gray part above with the name of your theme folder.
So far, we have finished the theme of the content produced, the specific production also requires you to practice more.
Original article, reproduced please specify:Chapter 3: The theme file contains | Catfish(鲶鱼) CMS
我们在做主题的时候,有时需要在页面单独显示当前菜单下的二级菜单,这个在鲶鱼系统里面有两种...
由于PHP软件的运行都需要服务器运行环境,虽然可以找到很多PHP的集成环境来使用,但是多...
我们在使用博客网站的时候,经常会希望对自己发布的文章进行归档处理,例如每个月发布了哪些文...
鲶鱼系统可以使用找回密码功能,但是在开启找回密码功能之前,我们必须要进行一项设置,就是S...
现代程序开发多是使用框架来写应用程序,因为框架可以带来事半功倍的效果。对于PHP程序也是...
鲶鱼cms系统5.2.0版以及鲶鱼Blog系统3.2.0版在编辑文章页面新增了上传附件功...
Management background is composed of five bl...
In the previous section, we talked about how...
In the previous section we talked about how ...
To the last section we have learned to use t...
By the end of the previous section, we have ...