如何将哈巴狗链接与href链接

时间:2019-03-20 09:06:05

标签: pug

例如,如何在导航中创建哈巴狗链接。如果我说了三个页面,即index,page1和page2,并且在ul中有li链接,如下所示:

{# templates/base.html.twig #}
<!DOCTYPE html>
<html>
    <head>
        <!-- ... -->
        {% block stylesheets %}
            {# 'app' must match the first argument to addEntry() in webpack.config.js #}
            {{ encore_entry_link_tags('app') }}

            <!-- Renders a link tag (if your module requires any CSS)
            <link rel="stylesheet" href="/build/app.css"> -->
        {% endblock %}
    </head>
    <body>
        <!-- ... -->

        {% block javascripts %}
        {{ encore_entry_script_tags('app') }}

        <!-- Renders app.js & a webpack runtime.js file
        <script src="/build/runtime.js"></script>
        <script src="/build/app.js"></script> -->
        {% endblock %}
    </body>
</html>

我已经使用斜杠作为绝对URL,这是正确的方法吗?

谢谢

0 个答案:

没有答案