mirror of
https://github.com/JuanCanham/fresh-theme-elegant.git
synced 2024-11-21 15:50:10 +00:00
Merge pull request #7 from BackIsBachus/number-of-social-links
Add another row every 5 social links (limited to 3 rows for now). It's not pretty but it will work for now.
This commit is contained in:
commit
2e4b297ad8
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "fresh-theme-elegant",
|
"name": "fresh-theme-elegant",
|
||||||
"version": "0.1.2",
|
"version": "0.1.3",
|
||||||
"description": "Responsive resume theme for FRESH using using the Elegant theme from JSON-Resume.",
|
"description": "Responsive resume theme for FRESH using using the Elegant theme from JSON-Resume.",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -19,7 +19,16 @@
|
|||||||
<div class="social-links text-center">
|
<div class="social-links text-center">
|
||||||
<div>
|
<div>
|
||||||
{{#each r.social}}
|
{{#each r.social}}
|
||||||
|
{{#compare @key 5}}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
{{/compare}}
|
||||||
|
{{#compare @key 10}}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
{{/compare}}
|
||||||
<a href="{{url}}" target="_blank" data-toggle="tooltip" title="{{user}} on {{network}}" class="fs-2x social-link"><i class="link-{{toLower network}} fa fa-{{toLower network}}"></i></a>
|
<a href="{{url}}" target="_blank" data-toggle="tooltip" title="{{user}} on {{network}}" class="fs-2x social-link"><i class="link-{{toLower network}} fa fa-{{toLower network}}"></i></a>
|
||||||
|
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user