Skip to content
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
10 changes: 10 additions & 0 deletions app/lib/frontend/templates/views/shared/layout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ d.Node pageLayoutNode({
required String? moderationUrl,
required ModerationSubject? moderationSubject,
}) {
final appleTouchIconUrl = faviconUrl.endsWith('.png')
? faviconUrl
: staticUrls.getAssetUrl('/static/img/apple-touch-icon.png');
return d.fragment([
d.unsafeRawHtml('<!DOCTYPE html>\n'),
d.element(
Expand Down Expand Up @@ -85,7 +88,14 @@ d.Node pageLayoutNode({
href:
'https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&family=Google+Sans+Display:wght@400&family=Google+Sans+Text:wght@400;500;700&family=Google+Sans+Mono:wght@400;700&display=swap',
),
// default favicon
d.link(rel: 'shortcut icon', href: faviconUrl),
// WebClip icon(s) for Apple devices
// https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html
d.meta(rel: 'apple-touch-icon', href: appleTouchIconUrl),
d.meta(
rel: 'apple-touch-icon-precomposed', href: appleTouchIconUrl),

d.link(
rel: 'stylesheet',
href: 'https://www.gstatic.com/glue/v25_0/ccb.min.css'),
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/authorized_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>Pub Authorized Successfully</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/consent_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>Consent</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/create_publisher_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>Create publisher</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/error_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>error_title</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/help_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>Help | Dart packages</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/help"/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/landing_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>The official repository for Dart and Flutter packages.</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/"/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/my_activity_log_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>My activity log</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/my_liked_packages.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>My liked packages</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/my_packages.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>My packages | starting with oxygen</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/my_publishers.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>My publishers</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_activity_log_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>oxygen package - Admin</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_admin_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>oxygen package - Admin</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<meta name="description" content="Pub is the package manager for the Dart programming language, containing reusable libraries &amp; packages for Flutter and general Dart programs."/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_changelog_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>oxygen changelog | Dart package</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/packages/oxygen/changelog"/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_example_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>oxygen example | Dart package</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/packages/oxygen/example"/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_index_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>Search results for sdk:dart</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/packages?q=sdk%3Adart"/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_install_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>oxygen install | Dart package</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/packages/oxygen/install"/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_score_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>oxygen score | Dart package</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/packages/oxygen/score"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>oxygen score | Dart package</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/packages/oxygen/score"/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_show_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>oxygen | Dart package</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/packages/oxygen"/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_show_page_discontinued.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>pkg | Dart package</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/favicon.ico?hash=mocked_hash_985685822"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/apple-touch-icon.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/packages/pkg"/>
Expand Down
2 changes: 2 additions & 0 deletions app/test/frontend/golden/pkg_show_page_flutter_plugin.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<title>flutter_titanium | Flutter package</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&amp;family=Google+Sans+Display:wght@400&amp;family=Google+Sans+Text:wght@400;500;700&amp;family=Google+Sans+Mono:wght@400;700&amp;display=swap"/>
<link rel="shortcut icon" href="/static/hash-%%etag%%/img/flutter-logo-32x32.png"/>
<meta rel="apple-touch-icon" href="/static/hash-%%etag%%/img/flutter-logo-32x32.png"/>
<meta rel="apple-touch-icon-precomposed" href="/static/hash-%%etag%%/img/flutter-logo-32x32.png"/>
<link rel="stylesheet" href="https://www.gstatic.com/glue/v25_0/ccb.min.css"/>
<link rel="search" type="application/opensearchdescription+xml" title="Dart packages" href="/osd.xml"/>
<link rel="canonical" href="https://pub.dev/packages/flutter_titanium"/>
Expand Down
Loading
Loading