-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 2.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-17414483-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-17414483-3');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="google-site-verification" content="GEZt5fFFLE0NMZLBQ9SMDE5IJFNSi7h9k21qC1DSAN8" />
<title>Reactive SEO experiment with Vue.js</title>
<style>
h1, h2 {
font-weight: normal;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
em {
color: lightgray;
display: block;
/* border: 1px dashed lightgray; */
padding: 4px;
font-family: monospace;
}
</style>
</head>
<body>
<h1>Reactive content indexing experiment with Vue.js</h1>
<p>Hello. This is a reactive content indexing experiment. The texts are taken from <a href="http://infinitejest.wallacewiki.com/">Infinite Jest Wiki</a>, a Wiki about the David Foster Wallace novel. Explanation <a href="#expl">Here</a></p>
<p><em>Text above the following line is inline HTML.</em></p>
<hr>
<div id="app"></div>
<p><em>Text below the above line is inline HTML.</em></p>
<p id="expl">This is a reactive SEO experiment to test Search Engine's indexing capabilities with front-end Javascript frameworks, in this case <a href="https://vuejs.org/" target="_blank">Vue.js</a></p>
<p>Experiment by <a href="https://www.linkedin.com/in/paolo-mioni-56b9041/" target="_blank">Paolo Mioni</a> @ <a href="https://www.hce.it/en" target="_blank">HCE.IT</a>. <a href="https://medium.com/hceverything" target="_blank">Read our blog.</a></p>
<!-- built files will be auto injected -->
</body>
</html>