removed development options from cargo.toml
This commit is contained in:
parent
5cec8e5466
commit
7504ab47b0
3 changed files with 5 additions and 15 deletions
|
@ -3,12 +3,3 @@ base_url = "https://example.com"
|
|||
|
||||
# Whether to automatically compile all Sass files in the sass directory
|
||||
compile_sass = true
|
||||
|
||||
build_search_index = true
|
||||
|
||||
[extra]
|
||||
zulma_title = "Blog"
|
||||
zulma_brand = { image = "$BASE_URL/images/bulma.png", text = "Home" }
|
||||
zulma_theme = "darkly"
|
||||
zulma_themes = ["default", "darkly", "flatly", "pulse", "simplex"]
|
||||
zulma_allow_theme_selection = true
|
|
@ -16,10 +16,6 @@
|
|||
{% block title %}{{ config.title }}{% endblock title %}
|
||||
</title>
|
||||
|
||||
{% for theme in config.extra.zulma_themes %}
|
||||
<link rel="preload" as="style" href="{{ get_url(path=theme ~ ".css", trailing_slash=false) }}" />
|
||||
{% endfor %}
|
||||
|
||||
{% block css %}
|
||||
{{ index_macros::css() }}
|
||||
{% endblock css %}
|
||||
|
|
|
@ -2,3 +2,6 @@ name = "Zulma"
|
|||
description = "A zola theme based off bulma.css"
|
||||
license = "MIT"
|
||||
min_version = "0.6.0"
|
||||
|
||||
[extra]
|
||||
zulma_themes = ["default", "darkly", "flatly", "pulse", "simplex"]
|
||||
|
|
Loading…
Add table
Reference in a new issue