Skip to content

Commit 38b7906

Browse files
authoredMar 16, 2022
Meta tag fixes (plotly#172)
* Updating SEO title and description for index page * Remove redundant SEO tags
1 parent b3f085b commit 38b7906

File tree

5 files changed

+3
-46
lines changed

5 files changed

+3
-46
lines changed
 

‎Gemfile

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
source 'https://rubygems.org'
22
gem 'github-pages'
33
gem 'jekyll-redirect-from'
4-
gem 'jekyll-seo-tag'
54
gem 'jemoji'
65
gem 'octopress'
76
gem 'rake'

‎_config.yml

-22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plugins:
22
- jekyll-redirect-from
3-
- jekyll-seo-tag
43
- jekyll-sitemap
54
- algoliasearch-jekyll
65

@@ -64,24 +63,3 @@ algolia:
6463
- h6
6564
- unordered(text)
6665
- unordered(tags)
67-
68-
# ---
69-
# Jekyll SEO Tags
70-
# ---
71-
url: https://plotly.com
72-
tagline: Plotly is the easiest way to graph and share your data
73-
author: plotlygraphs
74-
twitter:
75-
username: plotlygraphs
76-
card: photo
77-
facebook:
78-
admin: 1123751525
79-
admins: 22418
80-
logo: /all_static/images/dark-logo.png
81-
social:
82-
links:
83-
- https://twitter.com/plotlygraphs
84-
- https://www.facebook.com/plotly
85-
- https://www.linkedin.com/company/plotly/mycompany/
86-
- https://github.com/plotly
87-
- https://www.instagram.com/plotly/

‎_config_dev.yml

-22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plugins:
22
- jekyll-redirect-from
3-
- jekyll-seo-tag
43
- jekyll-sitemap
54
- algoliasearch-jekyll
65

@@ -70,24 +69,3 @@ algolia:
7069
- h6
7170
- unordered(text)
7271
- unordered(tags)
73-
74-
# ---
75-
# Jekyll SEO Tags
76-
# ---
77-
url: https://plotly.com
78-
tagline: Plotly is the easiest way to graph and share your data
79-
author: plotlygraphs
80-
twitter:
81-
username: plotlygraphs
82-
card: photo
83-
facebook:
84-
admin: 1123751525
85-
admins: 22418
86-
logo: /all_static/images/dark-logo.png
87-
social:
88-
links:
89-
- https://twitter.com/plotlygraphs
90-
- https://www.facebook.com/plotly
91-
- https://www.linkedin.com/company/plotly/mycompany/
92-
- https://github.com/plotly
93-
- https://www.instagram.com/plotly/

‎_includes/layouts/seo.html

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
{% capture title %}
44
{% if page.permalink == '/python/' or page.language == '/julia/' or page.language == '/r/' or page.language == '/ggplot2/' or page.language == '/f_sharp/' or page.language == '/matlab/' or page.language == '/javascript/' %}{{page.name}}
55
{% elsif page.name == '404' %} 404 Page Not Found
6+
{% elsif page.permalink == '/api/' or page.permalink == '/graphing-libraries/' %} Plotly Open Source Graphing Libraries
67
{% elsif page.name %} {{page.name | capitalize}} with {% if page.language == 'plotly_js' %}JavaScript{% elsif page.language == 'ggplot2'%}ggplot2{% elsif page.language == 'f_sharp' %}F#{% elsif page.language == 'matlab' %}MATLAB{% else %}{{page.language | capitalize }}{% endif %}{% else %} Plotly Open Source Graphing Libraries{% endif %}
78
{% endcapture %}
89
<!-- Count number of plots on the page -->
@@ -20,6 +21,8 @@
2021

2122
{% if page.layout == 'langindex' %}
2223
{% capture description %}{{page.description}}{% endcapture %}
24+
{% elsif page.permalink == '/api/' or page.permalink == '/graphing-libraries/' %}
25+
{% capture description %}"Interactive charts and maps for Python, R, Julia, Javascript, ggplot2, F#, MATLAB®, and Dash."{% endcapture %}
2326
{% else %}
2427
{% assign counter = 0 %}
2528
{% for code_block in code_blocks %}

‎_layouts/base.html

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<!DOCTYPE html>
22
<html>
3-
{% seo %}
43
{% include layouts/head.html %}
54

65
<body data-spy="scroll" data-target=".watch" style="position:relative;" class="darkmode">

0 commit comments

Comments
 (0)