Skip to content

Commit

Permalink
small layout update
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelfournier committed Oct 13, 2021
1 parent 02d4c4b commit 5201e3e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: The Polifonia Ecosystem
description: Overview and documentation of the Polifonia Project data and software components

# url is currently only used only for the RSS feed in feed.xml
url: https://polifonia-project.github.io/
url: https://polifonia-project.github.io

# baseurl will often be '', but for a project page on gh-pages, it needs to
# be the project name.
Expand All @@ -19,15 +19,15 @@ logo: "/assets/images/polifonia-black.png"
# Aux links for the upper right navigation
aux_links:
"Polifonia on Github":
- "//github.com/polifonia-project/"
- "//github.com/polifonia-project"

heading_anchors: true
# Color scheme supports "light" (default) and "dark"
color_scheme: polifonia


# These can be '' to hide the Github or Gitlab nav buttons
github: 'polifonia-project/'
github: 'polifonia-project'
gitlab: ''

# Set this to your UA-# value, or '' to disable the block completely
Expand Down
4 changes: 2 additions & 2 deletions _sass/color_schemes/polifonia.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ $search-result-preview-color: $grey-dk-000;

$feedback-color: darken($red-300, 3%) !default;

$border-color: $blue-polifonia;
$border-color: $red-polifonia;

$link-color: $red-polifonia;
$link-color: $blue-polifonia;

$border: 1px solid !default;
2 changes: 1 addition & 1 deletion pages/external-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permalink: /external-components.html
<ul>
{% for comp in site.external-components %}
<li><a href="{{ comp.url | relative_url }}">
{{ comp.path }} ({{ comp.name }})
{% if comp.name %} {{ comp.name }} {% else %} {{ comp.id }} {% endif %}
</a></li>
{% endfor %}
</ul>
Expand Down
2 changes: 1 addition & 1 deletion tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permalink: /tags.html
{% assign wp-posts = site.documents | where: "WP", wp.name %}
<ul class="inline">
{% for page in wp-posts %}
<li> {% if page.name %}<a href="{{ page.url }}">{{ page.name }}</a>{% else %}<a href="{{ page.url }}">{{ page.persona }}</a> {% endif %} </li>
<li> {% if page.name %}<a href="{{ page.url | relative_url }}">{{ page.name }}</a>{% else %}<a href="{{ page.url | relative_url }}">{{ page.persona }}</a> {% endif %} </li>
{% endfor %}
</ul>
{% endfor %}

0 comments on commit 5201e3e

Please sign in to comment.