This commit is contained in:
pgonzal 2018-10-02 22:38:06 -07:00
Родитель ce706954ec
Коммит e654924003
4 изменённых файлов: 16 добавлений и 6 удалений

Просмотреть файл

@ -16,8 +16,8 @@ title: Rush
# Short bio or description (displayed in the header)
description: Rush makes life easier for JavaScript developers who build and publish many NPM packages at once. If you're looking to consolidate all your projects into a single repo, you came to the right place!
# Location of the logo
logo: https://rushjs.io/images/rush-ograph.png
# Location of the Open Graph image (1200x1200 recommended size)
logo: /images/rush-ograph.png
# "true" or "false" to indicate whether to provide a download URL
show_downloads: false

Просмотреть файл

@ -13,8 +13,15 @@
<!-- <meta name="author" content="{{ site.title }}" /> -->
{% if page.title %}
<meta property="og:title" content="{{ page.title }}" />
<meta property="twitter:title" content="{{ page.title }}" />
<meta property="og:title" content="Rush: {{ page.title }}" />
<meta property="twitter:title" content="Rush: {{ page.title }}" />
{% else %}
<meta property="og:title" content="Rush" />
<meta property="twitter:title" content="Rush" />
{% endif %}
{% if site.logo %}
<meta property="og:image" content="{{ site.logo }}" />
{% endif %}
<link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/images/apple-touch-icon.png">

Просмотреть файл

@ -4,7 +4,11 @@
<head>
{% include base/meta.html %}
<title>Rush - {{ page.title }}</title>
{% if page.title %}
<title>Rush: {{ page.title }}</title>
{% else %}
<title>Rush</title>
{% endif %}
{% include base/styles.html %}
</head>

Просмотреть файл

@ -1,6 +1,5 @@
---
layout: default
title: Rush
permalink: /
---