什么是螺栓CMS中的path.theme,它在哪里定义?

时间:2016-10-06 00:20:13

标签: bolt-cms

我刚刚在bolt的默认主题中浏览_master.twig的代码,我遇到了以下几行代码:

{% set main_width = theme.layout.main_width|default(8) %}
{% set aside_width = theme.layout.aside_width|default(4) %}
<!doctype html>
<html class="no-js" lang="{{ htmllang() }}">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="x-ua-compatible" content="ie=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        {# make sure we always display a proper title: The record's title if there is one, appended with the
           sitename. If there is no title, we append the sitename with the payoff, if there is one. #}
        <title>
            {%- if record.title is defined %}{{ record.title|striptags }} | {% endif -%}
                {{ app.config.get('general/sitename') -}}
            {% if record.title is not defined and app.config.get('general/payoff') %} | {{ app.config.get('general/payoff') }}{% endif -%}
        </title>
        <link rel="stylesheet" href="{{ paths.theme }}css/foundation.css">
        <link rel="stylesheet" href="{{ paths.theme }}css/theme.css">
        <link href='https://fonts.googleapis.com/css?family=Noto+Sans:700,700italic' rel='stylesheet' type='text/css'>
        {% block headincludes %}
        {% endblock headincludes %}
    </head>

我只想知道paths.theme是什么,它在哪里定义?这个变量在螺栓CMS中意味着什么?

2 个答案:

答案 0 :(得分:2)

啊,是的。这实际上可以追溯到Bolt 1.x功能,我们将在3.x中删除但是......时间压力。 ; - )

我们最近removed/cleaned that up in those base templates因为我们已经通过Symfony Asset实施了一段时间的功能。

现在正确的方法如下:

<link rel="stylesheet" href="{{ asset('css/foundation.css', 'theme') }}">

其中theme是Symfony Asset&#34;主题包&#34;,在这种情况下是当前正在运行的主题,而css/foundation.cssfoundation.css的路径,相对于正在运行的主题目录。

至于他们在哪里定义...... asset service provider

答案 1 :(得分:0)

看看螺栓Cheatsheet。在那里你找到了所有可用的路径。

paths.theme变量包含模板根目录的当前相对路径,例如/theme/base-2016/

要列出模板中的所有可用路径变量,只需添加以下剪切的{{ dump(paths) }}