zoukankan      html  css  js  c++  java
  • Templates

    Templates

    Templates are the site's markup, where images and js, css files are located as well as the site html structure. The default template is called Default.

    A regular site would have multiple css files and a javascript folder containing js files, an image folder. The rest of the sites pages come from the views.

    The typical elements of a page include the following. The title comes from an array with a key of the title followed by the constant SITETITLE, this lets the controllers set the page titles in an array that is passed to the template.

    The template_url function is being used to get the full path to the CSS file.

    Routing Images / CSS / JS files

    When files are above the document root resources must be placed inside the Templates/Default/Assetsfolder otherwise they won't be loaded correctly.

    To load images the template_url function can be used, it accepts 2 params

    1. The relative path of the asset
    2. the theme to be used.
    <img src='<?php echo template_url('images/logo.jpg', 'Default');?>' alt=''>

    Page example:

    <!DOCTYPE html>
    <html lang="<?php echo LANGUAGE_CODE; ?>">
    <head>
        <meta charset="utf-8">
        <title><?php echo $title.' - '.SITETITLE;?></title>
        <?php
        echo $meta;//place to pass data / plugable hook zone
        Assets::css([
            'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css',
            template_url('css/style.css', 'Default')',
        ]);
        echo $css; //place to pass data / plugable hook zone
        ?>
    </head>
    <body>
    <?php echo $afterBody; //place to pass data / plugable hook zone?>
    
    <div class="container">

    The default template comes with multiple files to demonstrate different use cases.

    default.php and custom.php are full page layouts whilst header.php and footer.php are partial layouts that can be mixed, the files ending with -rtl.php mean they are right to left formats.

    A theme can be as simple as a single layout file and an assets folder and message.php file.

  • 相关阅读:
    div中子div在firefox ie 水平居中对齐
    Access数据库自定义连接字符串(详细有图百度文档)
    ASP页面乱码
    国内开源asp.netCMS汇总
    sql 2005
    卡巴斯基授权key导入方式方法及其导入key基本原理
    关于SqlServer服务无法启动的症状分析和解决方法
    js下流媒体的在线播放
    用JS+vml作三维报表
    了解嵌入式数据库(sqlite,firebird)
  • 原文地址:https://www.cnblogs.com/chunguang/p/5642961.html
Copyright © 2011-2022 走看看