mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 11:39:29 -07:00
The meta.html file was modified to add three meta tags. The first meta tag sets the description of the website using the `site.Params.description` value. The second meta tag sets the application name using the `site.Params.app.title` value or falls back to the site title if not provided. The third meta tag sets the apple-mobile-web-app-title using the same logic as the second meta tag. These changes were made to improve the SEO and user experience of the website.
10 lines
278 B
HTML
10 lines
278 B
HTML
<meta name="Description" content="{{- site.Params.description -}}" />
|
|
<meta
|
|
name="application-name"
|
|
content="{{- .Site.Params.app.title | default site.Title -}}"
|
|
/>
|
|
<meta
|
|
name="apple-mobile-web-app-title"
|
|
content="{{- .Site.Params.app.title | default site.Title -}}"
|
|
/>
|