Skip to content

Adds a "supported browsers" page to the gh-pages site #3132

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

Merged
merged 17 commits into from
Jul 16, 2025
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
112 changes: 58 additions & 54 deletions gh-pages/src/_includes/default.html
Original file line number Diff line number Diff line change
@@ -1,66 +1,70 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta property="og:locale" content="en_US" />
<meta name="viewport" content="width=device-width, initial-scale=1">

{% if title %}
<title>{{ title }} | Baseline</title>
<meta property="og:title" content="{{ title }}" />
<meta property="twitter:title" content="{{ title }}" />
{% else %}
<title>Baseline</title>
{% endif %}
<head>
<meta charset="UTF-8">
<meta property="og:locale" content="en_US" />
<meta name="viewport" content="width=device-width, initial-scale=1">

{% if description %}
<meta name="description" content="{{ description }}" />
<meta property="og:description" content="{{ description }}">
{% endif %}
{% if title %}
<title>{{ title }} | Baseline</title>
<meta property="og:title" content="{{ title }}" />
<meta property="twitter:title" content="{{ title }}" />
{% else %}
<title>Baseline</title>
{% endif %}

<link rel="canonical" href="{{ page.url | htmlBaseUrl: "https://web-platform-dx.github.io" }}" />
<meta property="og:url" content="{{ page.url | htmlBaseUrl: "https://web-platform-dx.github.io" }}" />
{% if description %}
<meta name="description" content="{{ description }}" />
<meta property="og:description" content="{{ description }}">
{% endif %}

<meta property="og:site_name" content="Baseline" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<link rel="canonical" href="{{ page.url | htmlBaseUrl: " https://web-platform-dx.github.io" }}" />
<meta property="og:url" content="{{ page.url | htmlBaseUrl: " https://web-platform-dx.github.io" }}" />

<link rel="stylesheet" href="/assets/css/style.css">
<link rel="icon" type="image/png" href="/assets/img/wide-sq-32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/assets/img/wide-sq-192.png" sizes="192x192" />
</head>
<body>
<div class="wrapper">
<header>
<meta property="og:site_name" content="Baseline" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />

<a href="/">
<img src="/assets/img/baseline-wordmark.svg" alt="Baseline logo" />
</a>
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="icon" type="image/png" href="/assets/img/wide-sq-32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/assets/img/wide-sq-192.png" sizes="192x192" />
</head>

<p>
Baseline gives you clear information about which web platform features work across browsers.
</p>
<body>
<div class="wrapper">
<header>

<ul class="nav">
<li><a href="/">Baseline</a></li>
<li><a href="/web-features/">web-features</a></li>
<li><a href="/webdx-cg/">WebDX Community Group</a></li>
<li><a href="/use-baseline/">Baseline in your project</a></li>
<li><a href="/name-and-logo-usage-guidelines/">Name and logo usage guidelines</a></li>
<li><a href="/baseline-in-the-wild/">Baseline in the wild</a></li>
<li><a href="https://github.com/web-platform-dx/web-features/tree/main/docs">Project documentation</a></li>
<li><a href="https://github.com/web-platform-dx/web-features/">GitHub repository</a></li>
</ul>
</header>
<a href="/">
<img src="/assets/img/baseline-wordmark.svg" alt="Baseline logo" />
</a>

<section>
{% if title %}<h1>{{ title }}</h1>{% endif %}
<p>
Baseline gives you clear information about which web platform features work across browsers.
</p>

{{ content }}
</section>
<footer>
<!-- Footer Content -->
</footer>
</div>
</body>
</html>
<ul class="nav">
<li><a href="/">Baseline</a></li>
<li><a href="/web-features/">web-features</a></li>
<li><a href="/supported-browsers/">Supported browsers</a></li>
<li><a href="/webdx-cg/">WebDX Community Group</a></li>
<li><a href="/use-baseline/">Baseline in your project</a></li>
<li><a href="/name-and-logo-usage-guidelines/">Name and logo usage guidelines</a></li>
<li><a href="/baseline-in-the-wild/">Baseline in the wild</a></li>
<li><a href="https://github.com/web-platform-dx/web-features/tree/main/docs">Project documentation</a></li>
<li><a href="https://github.com/web-platform-dx/web-features/">GitHub repository</a></li>
</ul>
</header>

<section>
{% if title %}<h1>{{ title }}</h1>{% endif %}

{{ content }}
</section>
<footer>
<!-- Footer Content -->
</footer>
</div>
</body>

</html>
Loading