Skip to content

Commit 954ea90

Browse files
authored
Two fixes to Community / Logos page (#2148)
Firstly, remove bogus comma inside the `<img>` tags. I believe this was a left over from when the images were inserted via a function, such as: image_tag('logos/logomark-orange@2x.png', {:width => 100, :height => 100}) becoming <img src="/images/logos/logomark-orange@2x.png" width="100", height="100"> Secondly, remove links with an empty href. Those only serve to confuse the user.
2 parents 82fd4fb + c133cbf commit 954ea90

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

content/community/logos.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ <h1>Logos</h1>
1515
<div class="column-left">
1616
<ul class="content-list">
1717
<li>
18-
<a href=""><img src="{{< relurl "images/logos/2color-lightbg@2x.png" >}}" width="294", height="100"></a>
18+
<img src="{{< relurl "images/logos/2color-lightbg@2x.png" >}}" width="294" height="100">
1919
<h4>Full color Git logo for light backgrounds</h4>
2020
<p class="description">
2121
<a href="{{< relurl "images/logos/downloads/Git-Logo-2Color.png" >}}">PNG (bitmap)</a>
@@ -26,7 +26,7 @@ <h4>Full color Git logo for light backgrounds</h4>
2626
</p>
2727
</li>
2828
<li>
29-
<a href=""><img src="{{< relurl "images/logos/1color-orange-lightbg@2x.png" >}}" width="294", height="100"></a>
29+
<img src="{{< relurl "images/logos/1color-orange-lightbg@2x.png" >}}" width="294" height="100">
3030
<h4>Orange Git logo for light backgrounds</h4>
3131
<p class="description">
3232
<a href="{{< relurl "images/logos/downloads/Git-Logo-1788C.png" >}}">PNG (bitmap)</a>
@@ -37,7 +37,7 @@ <h4>Orange Git logo for light backgrounds</h4>
3737
</p>
3838
</li>
3939
<li>
40-
<a href=""><img src="{{< relurl "images/logos/1color-lightbg@2x.png" >}}" width="294", height="100"></a>
40+
<img src="{{< relurl "images/logos/1color-lightbg@2x.png" >}}" width="294" height="100">
4141
<h4>One color Git logo for light backgrounds</h4>
4242
<p class="description">
4343
<a href="{{< relurl "images/logos/downloads/Git-Logo-Black.png" >}}">PNG (bitmap)</a>
@@ -48,7 +48,7 @@ <h4>One color Git logo for light backgrounds</h4>
4848
</p>
4949
</li>
5050
<li>
51-
<a href=""><img src="{{< relurl "images/logos/1color-darkbg@2x.png" >}}" width="294", height="100"></a>
51+
<img src="{{< relurl "images/logos/1color-darkbg@2x.png" >}}" width="294" height="100">
5252
<h4>One color Git logo for dark backgrounds</h4>
5353
<p class="description">
5454
<a href="{{< relurl "images/logos/downloads/Git-Logo-White.png" >}}">PNG (bitmap)</a>
@@ -63,7 +63,7 @@ <h4>One color Git logo for dark backgrounds</h4>
6363
<div class="column-right">
6464
<ul class="content-list">
6565
<li>
66-
<a href=""><img src="{{< relurl "images/logos/logomark-orange@2x.png" >}}" width="100", height="100"></a>
66+
<img src="{{< relurl "images/logos/logomark-orange@2x.png" >}}" width="100" height="100">
6767
<h4>Orange logomark for light backgrounds</h4>
6868
<p class="description">
6969
<a href="{{< relurl "images/logos/downloads/Git-Icon-1788C.png" >}}">PNG (bitmap)</a>
@@ -74,7 +74,7 @@ <h4>Orange logomark for light backgrounds</h4>
7474
</p>
7575
</li>
7676
<li>
77-
<a href=""><img src="{{< relurl "images/logos/logomark-black@2x.png" >}}" width="100", height="100"></a>
77+
<img src="{{< relurl "images/logos/logomark-black@2x.png" >}}" width="100" height="100">
7878
<h4>Black logomark for light backgrounds</h4>
7979
<p class="description">
8080
<a href="{{< relurl "images/logos/downloads/Git-Icon-Black.png" >}}">PNG (bitmap)</a>
@@ -85,7 +85,7 @@ <h4>Black logomark for light backgrounds</h4>
8585
</p>
8686
</li>
8787
<li>
88-
<a href=""><img src="{{< relurl "images/logos/logomark-white@2x.png" >}}" width="100", height="100"></a>
88+
<img src="{{< relurl "images/logos/logomark-white@2x.png" >}}" width="100" height="100">
8989
<h4>White logomark for dark backgrounds</h4>
9090
<p class="description">
9191
<a href="{{< relurl "images/logos/downloads/Git-Icon-White.png" >}}">PNG (bitmap)</a>

0 commit comments

Comments
 (0)