安装pinax主题



我想用这个主题替换Pinax的默认主题:https://github.com/pinax/pinax-theme-bootstrap但我不确定我是否理解快速入门说明。你能给我一些提示吗?

    Include "pinax-theme-bootstrap" in your requirements file and "pinax_theme_bootstrap" in your INSTALLED APPS.

这里的需求文件是什么?

    Make sure both template loaders and staticfiles finders includes app directories.

我不明白他们的意思。我在文件settings.py中看到STATICILES_DIRS和TEMPLATE_LOADERS,这意味着我必须将pinax_theme_bootstrap目录放在应用程序文件夹中,并包含指向该目录的链接。像这样:

    STATICFILES_DIRS = [
          os.path.join(PROJECT_ROOT, "media"),
          os.path.join(PINAX_ROOT, "media", PINAX_THEME),
          os.path.join(PINAX_ROOT, "apps", pinax-theme-bootstrap),
                       ]
    TEMPLATE_LOADERS = [
          "django.template.loaders.filesystem.load_template_source",
          "django.template.loaders.app_directories.load_template_source",
          "apps.pinax-theme-bootstrap",
                       ]

    Site name comes from Sites fixture.

我完全不明白他们的意思。

    Your "site_base.html" should extend "theme_base.html" and should provide "footer" and "nav" blocks (the latter should just be a ul of li of a links).

所以我必须把扩展"theme_base.html"放在"site_base.html"里面。如果以前没有的话,应该在"site_base.html"里面包括"footer"one_answers"nav"块吗?

    Your pages should have blocks "head_title" and "body" and should extend "site_base.html".

因此,在我想使用这个主题的任何页面中,我都必须有块"head_title"one_answers"body",并且应该扩展"site_base.html"。如果我有一个"base.html"已经扩展了"site_bbase.html",我还需要再扩展一次吗?

    The url name "home" should be defined as the homepage.

不确定。

请给我一些建议,谢谢!

我知道。Pinax的文档可以让人疯狂。。。我想,无论如何,让我们心存感激吧。

首先,创建templates/site_base.html。示例:

{% extends "theme_bootstrap/base.html" %}
{% block nav %}
<ul class="nav navbar-nav navbar-left">
<li><a href="#">Link 1</a>
<li><a href="#">Link 2</a>
</ul>
{% endblock %}
{%  block footer %}
        <div class="container">
            <hr>
            <footer>
                <p>&copy; Myself, 2014</p>
            </footer>
        </div>
{% endblock %}

然后。。。

url名称"home"应定义为主页。

这只是意味着在urls.py中,您的主页应该标记为name='home'。例如,

url(r'^$', 'app.views.index', name='home'),

否则你会得到错误,如

NoReverseMatch at /account/signup/
Reverse for 'home' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []

事实上,base.html有以下行:

{% block site_brand %}<a class="navbar-brand" href="{% url "home" %}">{{ SITE_NAME }}</a>{% endblock %}

如果您没有将任何URL标记为home,您认为它将如何解析url "home"

这也回答了有关网站名称的问题。您必须安装Django站点,然后才会定义SITE_NAME

这里的需求文件是什么?

这是一种可选的最佳实践。如果你想了解更多,这里是我前段时间写的一篇文章:http://dev.chocolatpistache.com/blog/2009/11/04/pinax-virtualenv-setuptools-pip-easy_install-and-requirementstxt/

确保模板加载程序和静态文件查找程序都包含应用程序目录。我不明白他们的意思。我在文件设置.py 中看到STATICILES_DIRS和TEMPLATE_LOADERS

您的TEMPLATE_LOADERS有"django.TEMPLATE.LOADERS.app_directories.load_TEMPLATE_source"。这是"模板的应用程序加载器"。您需要检查STATICFILES_FINDERS。默认情况下,这些设置应该处于启用状态。

将"apps.pinax主题引导程序"添加到TEMPLATE_LOADERS是完全错误的。它应该会在某个时候破坏你的网站。

所以我必须把扩展"theme_base.html"放在"site_base.html"里面。如果以前没有的话,应该在"site_base.html"里面包括"footer"one_answers"nav"块吗?

只需在您的项目/templates/site_base.html中复制theme_base.html,这将使您更轻松。

关于模板继承的链接:

https://docs.djangoproject.com/en/dev/topics/templates/#tags(关于"阻塞和扩展"的部分http://dev.chocolatpistache.com/blog/2009/07/15/template-inheritance-explained/

因此,在我想使用这个主题的任何页面中,我都必须有块"head_title"one_answers"body",并且应该扩展"site_base.html"。如果我有一个"base.html"已经扩展了"site_bbase.html",我还需要再扩展一次吗?

你的模板"article_detail.html"应该是:

  {% extends 'site_base.html' %}{# this is your copy of theme_base.html #}
  {% block head_title %}{{ article.title }}{% endblock %}
  {% block body %}
  <h1>{{ article.title }}</h1>
  <p>{{ article.body }}</p>
  {% endblock %}

我的建议是:安装Pinax并使用它的入门项目,默认情况下它有Pinax主题引导程序(默认情况下还有大多数项目需要的许多东西(。

耐心和毅力,我的朋友,如果你想摇滚,要想登顶还有很长的路要走:(

相关内容

  • 没有找到相关文章

最新更新