Skip to content

Commit

Permalink
[Website] Remove presentation role from blog archives (#8713)
Browse files Browse the repository at this point in the history
* Remove presentation role from blog archives

* Revert "Remove presentation role from blog archives"

This reverts commit b624239.

* Remove presentation role from blog archives
  • Loading branch information
anna-dingler authored Oct 19, 2023
1 parent 3ca0066 commit f003fe1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ layout: layout
<article class="w3-cell w3-margin-bottom w3-padding-16 w3-container w3-mobile article" style="width: 328px">
<% var imageSrc = post.featured_image ? url_for(post.featured_image) : url_for('content/icons_blue/blue-wide.png');
var style = "background-image: url('" + imageSrc + "')" %>
<a href="<%- config.root %><%- post.path %>" class="coverImage" style="<%= style %>" role="presentation" aria-label="<%= post.title %>"></a>
<a href="<%- config.root %><%- post.path %>" class="coverImage" style="<%= style %>" aria-label="<%= post.title %>"></a>
<h2><a class="article-title" href="<%- config.root %><%- post.path %>"><%- post.title %></a></h2>
<h3 class="article-subtitle"><%- post.subtitle %></h3>
<div class="w3-margin-top">
<div class="w3-cell w3-cell-middle">
<a href="<%- post.author.webpage %>" role="presentation"><img src="<%- post.author.avatar %>" class="w3-image w3-circle"
<a href="<%- post.author.webpage %>"><img src="<%- post.author.avatar %>" class="w3-image w3-circle"
style="width: 35px; margin-right: 6px" alt="Go to the webpage for <%- post.author.name %>" /></a>
</div>
<div class="w3-cell">
Expand Down

0 comments on commit f003fe1

Please sign in to comment.