2016-12-15 18:43:40 +03:00
|
|
|
{% set platform = config.extra.repo_icon or config.repo_url %}
|
2016-10-16 19:22:07 +03:00
|
|
|
{% if "github" in platform %}
|
2016-12-15 17:55:40 +03:00
|
|
|
{% set repo_type = "github" %}
|
2016-12-15 18:43:40 +03:00
|
|
|
{% set repo_icon = "md-source--github" %}
|
2016-10-16 19:22:07 +03:00
|
|
|
{% elif "gitlab" in platform %}
|
2016-12-15 17:55:40 +03:00
|
|
|
{% set repo_type = "gitlab" %}
|
2016-10-16 19:22:07 +03:00
|
|
|
{% set repo_icon = "md-source--gitlab" %}
|
|
|
|
{% elif "bitbucket" in platform %}
|
2016-12-15 17:55:40 +03:00
|
|
|
{% set repo_type = "bitbucket" %}
|
2016-10-16 19:22:07 +03:00
|
|
|
{% set repo_icon = "md-source--bitbucket" %}
|
2016-09-23 18:46:16 +03:00
|
|
|
{% else %}
|
2016-12-15 17:55:40 +03:00
|
|
|
{% set repo_type = "" %}
|
2016-10-16 19:22:07 +03:00
|
|
|
{% set repo_icon = "" %}
|
2016-09-23 18:46:16 +03:00
|
|
|
{% endif %}
|
2016-12-15 18:43:40 +03:00
|
|
|
<a href="{{ config.repo_url }}" title="Go to repository" class="md-source {{ repo_icon }}" data-md-source="{{ repo_type }}">
|
2016-09-23 18:46:16 +03:00
|
|
|
<div class="md-source__repository">
|
|
|
|
{{ repo_name }}
|
|
|
|
</div>
|
|
|
|
</a>
|