Skip to content

Commit f4127db

Browse files
committed
Add SEO enhancements and sitemap support.
1 parent 468fc08 commit f4127db

2 files changed

Lines changed: 27 additions & 19 deletions

File tree

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ title: "biohackathons"
33
# Use a Google Font
44
font: "Public Sans" # Can also be 'Ubuntu', 'Public Sans', 'Source Sans Pro', or 'Oswald'
55

6+
plugins:
7+
- jekyll-sitemap

_includes/head.html

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,28 @@
11
<head>
2-
<meta charset="UTF-8">
3-
<meta content="width=device-width, initial-scale=1.0" name="viewport">
4-
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
5-
<link href="/css/bootstrap.min.css" rel="stylesheet">
6-
<link href="/css/font-awesome/css/font-awesome.min.css" rel="stylesheet">
7-
<link href="/css/custom.css" rel="stylesheet">
8-
<link href="https://fonts.googleapis.com/css?family=Oswald|Source+Sans+Pro|Ubuntu|Public+Sans" rel="stylesheet">
9-
<script src="/js/jquery.js"></script>
10-
<script src="/js/bootstrap.min.js"></script>
11-
<title>{{ site.title }}
12-
{% if page.title %}
13-
-
14-
{{ page.title }}
15-
{% endif %}
16-
</title>
17-
<style>
18-
body, html, div, p, a, h1, h2, h3, h4, h5, h6, footer, form {
19-
font-family: "{{ site.font }}", sans-serif;
20-
}
2+
<meta charset="UTF-8">
3+
<meta content="width=device-width, initial-scale=1.0" name="viewport">
4+
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
5+
6+
<!-- SEO enhancements -->
7+
<meta name="description" content="Bringing people together to build tools or perform advanced bioinformatics analysis.">
8+
<meta name="robots" content="index, follow">
9+
10+
<link href="/css/bootstrap.min.css" rel="stylesheet">
11+
<link href="/css/font-awesome/css/font-awesome.min.css" rel="stylesheet">
12+
<link href="/css/custom.css" rel="stylesheet">
13+
14+
<link href="https://fonts.googleapis.com/css?family=Oswald|Source+Sans+Pro|Ubuntu|Public+Sans" rel="stylesheet">
15+
<script src="/js/jquery.js"></script>
16+
<script src="/js/bootstrap.min.js"></script>
17+
<title>{{ site.title }}
18+
{% if page.title %}
19+
-
20+
{{ page.title }}
21+
{% endif %}
22+
</title>
23+
<style>
24+
body, html, div, p, a, h1, h2, h3, h4, h5, h6, footer, form {
25+
font-family: "{{ site.font }}", sans-serif;
26+
}
2127
</style>
2228
</head>

0 commit comments

Comments
 (0)