Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update avatar #130

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/_opengraph.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if current_page.data.image
og_image = URI.join(config[:site_root_uri], image_path(current_page.data.image))
else
og_image = "https://" + config[:cdn_domain] + "/martin_small-v2.png"
og_image = "https://" + config[:cdn_domain] + "/martin_small-v3.png"
end
%>
<meta property="og:image" content="<%= og_image %>" />
Expand Down
2 changes: 1 addition & 1 deletion source/_twittermeta.erb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
if current_page.data.image
twitter_image = URI.join(config[:site_root_uri], image_path(current_page.data.image))
else
twitter_image = "https://" + config[:cdn_domain] + "/martin_small-v2.png"
twitter_image = "https://" + config[:cdn_domain] + "/martin_small-v3.png"
end
%>
<meta name="twitter:image" content="<%= twitter_image %>" />
Expand Down
2 changes: 1 addition & 1 deletion source/about-me.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: "Information about Martin Costello, a software developer and tester
</div>
<div class="col-md-4">
<div class="row text-center">
<img class="img-fluid mx-auto d-block lazy" style="margin: 0 auto;" data-original="https://<%= config[:cdn_domain] %>/martin_small-v2.png" height="300" width="300" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="<%= config[:blog_author] %>" title="<%= config[:blog_author] %>" />
<img class="img-fluid mx-auto d-block lazy" style="margin: 0 auto;" data-original="https://<%= config[:cdn_domain] %>/martin_small-v3.png" height="300" width="300" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="<%= config[:blog_author] %>" title="<%= config[:blog_author] %>" />
</div>
</div>
</div>
Expand Down