-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
96 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
- name: Instagram | ||
items: | ||
- url: https://www.example.com | ||
image: https://picsum.photos/700/400 # You can use paths to images in the assets folder, e.g., assets/images/insta.jpg. | ||
|
||
- url: https://www.example.org | ||
image: https://picsum.photos/500 | ||
|
||
- url: https://www.example.com | ||
image: https://picsum.photos/250/300 | ||
|
||
- name: YouTube | ||
items: | ||
- url: https://www.example.com | ||
image: https://picsum.photos/300/400 | ||
|
||
- url: https://www.example.org | ||
image: https://picsum.photos/400/500 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<section> | ||
{% for name in site.data.bio %} | ||
<details> | ||
<summary class="text-center text-error">{{ name.name }} Link-in-Bio</summary> | ||
<div class="bio-gallery"> | ||
{% for item in name.items %} | ||
<div class="bio-item"> | ||
<a href="{{ item.url }}" target="_blank" aria-label="{{ name.name }} link-in-bio"> | ||
<img class="bio-img text-center" src="{{ item.image }}" width="100%" height="100%" | ||
alt="{{ name.name }} post"></a> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</details> | ||
{% endfor %} | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<footer class="text-center"> | ||
<small class="text-grey">Powered by Jekyll theme <a href="https://github.com/digitalmalayali/Linkhub" | ||
<small class="text-grey">Powered by Jekyll theme <a href="https://github.com/digitalmalayali/linkhub-jekyll-theme" | ||
target="_blank">Linkhub</a>. Code is licensed under <a | ||
href="https://github.com/digitalmalayali/Linkhub/blob/main/LICENSE" target="_blank">MIT</a>.</small> | ||
href="https://github.com/digitalmalayali/linkhub-jekyll-theme/blob/main/LICENSE.txt" target="_blank">MIT</a>.</small> | ||
<h6>© {{ "now" | date: "%Y" }} {{ site.name }}</h6> | ||
</footer> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<main> | ||
{% for category in site.data.links %} | ||
<h5 class="text-center">{{ category.category }}</h5> | ||
{% for item in category.items %} | ||
<div class="row"> | ||
{% if item.tag %} | ||
<div class="col link is-center"> | ||
{% else %} | ||
<div class="col is-center"> | ||
{% endif %} | ||
<a class="button outline secondary" href="{{ item.url }}" target="_blank"><span class="iconify-inline" | ||
data-icon="{{ item.icon }}"></span>{{ item.title }} | ||
{% if item.tag %}<span class="tag is-small bd-success text-success">{{ item.tag }}</span>{% | ||
endif %}</a> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
{% endfor %} | ||
</main> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{% for social in site.data.social %} | ||
<a class="brand" href="{{ social.url }}" target="_blank" aria-label="{{ social.name }}"> | ||
<span class="iconify-inline" data-icon="{{ social.icon }}" style="color: {{ social.color }}"></span> | ||
</a> | ||
{% endfor %} | ||
<nav class="nav"> | ||
<div class="nav-center"> | ||
{% for social in site.data.social %} | ||
<a class="brand" href="{{ social.url }}" target="_blank" aria-label="{{ social.name }}"> | ||
<span class="iconify-inline" data-icon="{{ social.icon }}" style="color: {{ social.color }}"></span> | ||
</a> | ||
{% endfor %} | ||
</div> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.