Refactored logo assets as logos
Pluralizes the logos directory since there are multiple assets. This makes this consistent with the sibling icons folder. Milestone: patch
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -16,12 +16,12 @@
|
||||
|
||||
<%= tag.link title: "Terminus: Icon",
|
||||
rel: :icon,
|
||||
href: assets["logo/salmon.svg"],
|
||||
href: assets["logos/salmon.svg"],
|
||||
type: "image/svg+xml" %>
|
||||
|
||||
<%= tag.link title: "Terminus: Apple Icon",
|
||||
rel: "apple-touch-icon",
|
||||
href: assets["logo/apple.png"] %>
|
||||
href: assets["logos/apple.png"] %>
|
||||
|
||||
<%= tag.link title: "Terminus: Manifest",
|
||||
rel: :manifest,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<%= link_to routes.path(:root), class: "site-label" do %>
|
||||
<%= tag.img src: assets["logo/salmon.svg"], alt: "Logo", width: 30, height: 30 %>
|
||||
<%= tag.img src: assets["logos/salmon.svg"], alt: "Logo", width: 30, height: 30 %>
|
||||
<h1 class=label>Terminus</h1>
|
||||
<% end %>
|
||||
|
||||
|
||||
@@ -7,6 +7,6 @@
|
||||
</figure>
|
||||
|
||||
<p class="brand">
|
||||
<%= image_tag "logo/with_label.svg", alt: "Logo with Label", width: 150, height: 75 %>
|
||||
<%= image_tag "logos/with_label.svg", alt: "Logo with Label", width: 150, height: 75 %>
|
||||
</p>
|
||||
</dialog>
|
||||
|
||||
@@ -16,12 +16,12 @@
|
||||
|
||||
<%= tag.link title: "Terminus: Icon",
|
||||
rel: :icon,
|
||||
href: main_assets["logo/salmon.svg"],
|
||||
href: main_assets["logos/salmon.svg"],
|
||||
type: "image/svg+xml" %>
|
||||
|
||||
<%= tag.link title: "Terminus: Apple Icon",
|
||||
rel: "apple-touch-icon",
|
||||
href: main_assets["logo/apple.png"] %>
|
||||
href: main_assets["logos/apple.png"] %>
|
||||
|
||||
<%= tag.link title: "Terminus: Manifest",
|
||||
rel: :manifest,
|
||||
@@ -37,7 +37,7 @@
|
||||
<body class="site-page site-authentication">
|
||||
<header>
|
||||
<%= link_to routes.path(:root), class: "site-label" do %>
|
||||
<%= tag.img src: main_assets["logo/salmon.svg"], alt: "Logo", width: 30, height: 30 %>
|
||||
<%= tag.img src: main_assets["logos/salmon.svg"], alt: "Logo", width: 30, height: 30 %>
|
||||
<h1 class=label>Terminus</h1>
|
||||
<% end %>
|
||||
</header>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
href="https://trmnl.com/favicon.ico"
|
||||
sizes="32x32">
|
||||
|
||||
<%= favicon_tag main_assets["logo/salmon.svg"],
|
||||
<%= favicon_tag main_assets["logos/salmon.svg"],
|
||||
title: "Terminus: Icon",
|
||||
rel: :icon,
|
||||
type: "image/svg+xml" %>
|
||||
|
||||
@@ -43,7 +43,7 @@ RSpec.describe Terminus::Views::Scopes::PopoverScreenContent do
|
||||
</figure>
|
||||
|
||||
<p class="brand">
|
||||
<img src="#{assets["logo/with_label.svg"]}" alt="Logo with Label" width="150" height="75">
|
||||
<img src="#{assets["logos/with_label.svg"]}" alt="Logo with Label" width="150" height="75">
|
||||
</p>
|
||||
</dialog>
|
||||
CONTENT
|
||||
|
||||