update style, add div hyperlinks
This commit is contained in:
parent
dfa924a58b
commit
75cc059556
5 changed files with 116 additions and 7 deletions
|
|
@ -7,9 +7,9 @@
|
|||
</head>
|
||||
|
||||
{% if config.extra.backgroundrepeat == "yes" %}
|
||||
<body style="background-image: url({{ config.extra.backgroundimage }}); background-repeat: {{config.extra.backgroundrepeat }};">
|
||||
<body style="background-image: url({{ config.extra.backgroundimage }}); background-repeat: repeat;">
|
||||
{% else %}
|
||||
<body style="background-image: url({{ config.extra.backgroundimage }}); background-repeat: {{config.extra.backgroundrepeat }}; background-size: cover;">
|
||||
<body style="background-image: url({{ config.extra.backgroundimage }}); background-repeat: no-repeat; background-size: cover;">
|
||||
{% endif %}
|
||||
{% if config.extra.backgroundvignette == "yes" %}
|
||||
<div class="container" style="background: {{ config.extra.backgroundcolor}}40; box-shadow: inset 0 0 2000px">
|
||||
|
|
@ -29,9 +29,15 @@
|
|||
<div class="content-social-name">
|
||||
<p>{{ config.extra.name }}</p>
|
||||
</div>
|
||||
<div class="content-social-desc">
|
||||
<p>{{ config.extra.description }}</p>
|
||||
</div>
|
||||
{% if config.extra.social %}
|
||||
{% for links in config.extra.social %}
|
||||
<div class="content-social-link-{{ links.title }}">
|
||||
<div class="div-link">
|
||||
<a href="{{ links.link }}"></a>
|
||||
</div>
|
||||
<div class="{{ links.title }}-img">
|
||||
<a class="linkimg" href="{{ links.link }}"><img src="/img/{{ links.icon }}.svg"alt="Socialmedia Icon for {{links.icon}}" style="width: 25px; filter: invert(75%)"</img></a>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue