1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

feat: update site descriptions for improved clarity and SEO

This commit is contained in:
codecalm
2025-04-16 19:05:14 +02:00
parent fa89c6fa73
commit 2ac915cd93
5 changed files with 10 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ permalink: wizard.html
<div class="card-body text-center py-4 p-sm-5"> <div class="card-body text-center py-4 p-sm-5">
{% include "ui/illustration.html" image="boy-girl.svg" height="200" class="mb-n2" %} {% include "ui/illustration.html" image="boy-girl.svg" height="200" class="mb-n2" %}
<h1 class="mt-5">Welcome to Tabler!</h1> <h1 class="mt-5">Welcome to Tabler!</h1>
<p class="text-secondary">Tabler comes with tons of well-designed components and features. Start your adventure with Tabler and make your dashboard great again.</p> <p class="text-secondary">{{ site.description }}</p>
</div> </div>
{% include "ui/hr.html" text="your data" position="center" class="hr-text-spaceless" %} {% include "ui/hr.html" text="your data" position="center" class="hr-text-spaceless" %}

View File

@@ -1,6 +1,7 @@
{ {
"title": "Tabler", "title": "Tabler",
"description": "Premium and Open Source dashboard template with responsive and high quality UI.", "descriptionShort": "Premium and Open Source dashboard template with responsive and high quality UI.",
"description": "Tabler is packed with beautifully crafted components and powerful features. Jump in and start building a stunning dashboard — all for free!",
"themeColor": "#066fd1", "themeColor": "#066fd1",
"email": "support@tabler.io", "email": "support@tabler.io",
"homepage": "https://tabler.io", "homepage": "https://tabler.io",

View File

@@ -1,5 +1,5 @@
<!-- <!--
* Tabler - {{ site.description }} * Tabler - {{ site.descriptionShort }}
* @version {{ package.version }} * @version {{ package.version }}
* @link {{ site.homepage }} * @link {{ site.homepage }}
* Copyright 2018-{{ 'now' | date: "%Y" }} The Tabler Authors * Copyright 2018-{{ 'now' | date: "%Y" }} The Tabler Authors

View File

@@ -2,13 +2,13 @@
<meta name="twitter:image:src" content="{% if environment != 'development' %}{{ site.previewUrl }}{% endif %}/static/og.png"> <meta name="twitter:image:src" content="{% if environment != 'development' %}{{ site.previewUrl }}{% endif %}/static/og.png">
<meta name="twitter:site" content="@tabler_ui"> <meta name="twitter:site" content="@tabler_ui">
<meta name="twitter:card" content="summary"> <meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Tabler: Premium and Open Source dashboard template with responsive and high quality UI."> <meta name="twitter:title" content="Tabler: {{ site.descriptionShort }}">
<meta name="twitter:description" content="Tabler comes with tons of well-designed components and features. Start your adventure with Tabler and make your dashboard great again. For free!"> <meta name="twitter:description" content="{{ site.description}}">
<meta property="og:image" content="{% if environment != 'development' %}{{ site.previewUrl }}{% endif %}/static/og.png"> <meta property="og:image" content="{% if environment != 'development' %}{{ site.previewUrl }}{% endif %}/static/og.png">
<meta property="og:image:width" content="1280"> <meta property="og:image:width" content="1280">
<meta property="og:image:height" content="640"> <meta property="og:image:height" content="640">
<meta property="og:site_name" content="Tabler"> <meta property="og:site_name" content="Tabler">
<meta property="og:type" content="object"> <meta property="og:type" content="object">
<meta property="og:title" content="Tabler: Premium and Open Source dashboard template with responsive and high quality UI."> <meta property="og:title" content="Tabler: {{ site.descriptionShort }}">
<meta property="og:url" content="{% if environment != 'development' %}{{ site.previewUrl }}{% endif %}/static/og.png"> <meta property="og:url" content="{% if environment != 'development' %}{{ site.previewUrl }}{% endif %}/static/og.png">
<meta property="og:description" content="Tabler comes with tons of well-designed components and features. Start your adventure with Tabler and make your dashboard great again. For free!"> <meta property="og:description" content="{{ site.description }}">

View File

@@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/> <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/> <meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<title>{% if title %}{{ title }} - {% endif %}{% if site.title %}{{ site.title }} - {% endif %}{{ site.description }}</title> <title>{% if title %}{{ title }} - {% endif %}{% if site.title %}{{ site.title }} - {% endif %}{{ site.descriptionShort }}</title>
{% if environment == 'preview' %} {% if environment == 'preview' %}
{% include "layout/analytics.html" %} {% include "layout/analytics.html" %}
@@ -25,7 +25,7 @@
<link rel="icon" href="{{ page | relative }}/favicon.ico" type="image/x-icon"/> <link rel="icon" href="{{ page | relative }}/favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="{{ page | relative }}/favicon.ico" type="image/x-icon"/> <link rel="shortcut icon" href="{{ page | relative }}/favicon.ico" type="image/x-icon"/>
<meta name="description" content="{{ page.description | default: 'Tabler comes with tons of well-designed components and features. Start your adventure with Tabler and make your dashboard great again. For free!' | escape }}"/> <meta name="description" content="{{ description | default: site.description | escape }}"/>
{% include "layout/og.html" %} {% include "layout/og.html" %}
{% endif %} {% endif %}