Skip to content

Commit

Permalink
Testing another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hash3liZer committed Oct 18, 2024
1 parent c4e84a8 commit 0a0c85e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions layouts/shortcodes/profile.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{{ if .IsNamedParams }}
<div class="subflexer">
<figure class="snip1344">
<img src="{{ .Get 'imgsrc' }}" alt="{{ .Get 'name' }}" class="background"/>
<img src="{{ .Get 'imgsrc' }}" alt="{{ .Get 'name' }}" class="profile"/>
<img src="{{ .Get "imgsrc" }}" alt="{{ .Get "name" }}" class="background"/>
<img src="{{ .Get "imgsrc" }}" alt="{{ .Get "name" }}" class="profile"/>
<figcaption>
<h3>{{ .Get 'name' }}<span>{{ .Get 'tagline' }}</span></h3>
<h3>{{ .Get "name" }}<span>{{ .Get "tagline" }}</span></h3>
<div class="icons">
<a href="{{ .Get 'weblink' }}" target="_blank"> <i class="ion-social-chrome-outline" ></i></a>
<a href="{{ .Get 'githublink' }}" target="_blank"> <i class="ion-social-github-outline" ></i></a>
<a href="{{ .Get "weblink" }}" target="_blank"> <i class="ion-social-chrome-outline" ></i></a>
<a href="{{ .Get "githublink" }}" target="_blank"> <i class="ion-social-github-outline" ></i></a>
</div>
</figcaption>
</figure>
Expand Down

0 comments on commit 0a0c85e

Please sign in to comment.