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

Removed shorthand tags and replaced them with <?php as per the guidelines #1790

Merged
merged 3 commits into from
Aug 18, 2017
Merged
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
10 changes: 5 additions & 5 deletions brand.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</ul>

<h3>Logotype</h3>
<img src="<?=$sitewide['root'];?>images/brand/logotype.png" alt="elementary Logotype"/>
<img src="<?php echo $sitewide['root'];?>images/brand/logotype.png" alt="elementary Logotype"/>
<p>The logotype is to be used when space allows to refer to elementary the company. It can be used before a product name to refer to a specific product of elementary.</p>
<p>The logotype should always be used under the following guidelines:</p>
<ul>
Expand All @@ -37,7 +37,7 @@
</ul>

<h3>Logomark</h3>
<img src="<?=$sitewide['root'];?>images/brand/logomark.png" alt="elementary Logomark"/>
<img src="<?php echo $sitewide['root'];?>images/brand/logomark.png" alt="elementary Logomark"/>
<p>The "e" logomark is to be used to refer to elementary the company when space is constrained or a square ratio is required.</p>

<h2>Color</h2>
Expand Down Expand Up @@ -96,11 +96,11 @@

<h3>Community</h3>
<p>Community products (sites, fan clubs, etc.) are encouraged to use the elementary Community logo:</p>
<img src="<?=$sitewide['root'];?>images/brand/community-color.png" alt="elementary Community Logo with color"/>
<img src="<?=$sitewide['root'];?>images/brand/community-black.png" alt="elementary Community Logo in black"/>
<img src="<?php echo $sitewide['root'];?>images/brand/community-color.png" alt="elementary Community Logo with color"/>
<img src="<?php echo $sitewide['root'];?>images/brand/community-black.png" alt="elementary Community Logo in black"/>
<p>This helps establish the product as part of the overall elementary community while reducing confusion that can arise from using the main logomark.</p>
</section>

<section id="hardware">
<h2>Hardware Distributors</h2>
<p>We want to ensure that as long as our software carries the elementary branding, the experience will be consistent whether it was downloaded from our website or pre-installed on a hardware product.</p>
Expand Down