-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="copyright" content="copyright @arunredhu">
<meta name="description" content="I am a Full-Stack JavaScript developer by profession and tech enthusiast at heart. I love to play around with emerging technologies and mix and match to develop cross-platform cutting edge applications.">
<meta name="keywords" content="arun, arun redhu, arun kumar, portfolio, online resume, angular, angularjs, react, Javascript, ECMAScript, html, full stack developer">
<link rel="manifest" href="<%= htmlWebpackPlugin.files.publicPath %>manifest.json">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@ArunRedhu05" />
<meta name="twitter:title" content="Arun Redhu" />
<meta name="twitter:description" content="I am a Full-Stack JavaScript developer by profession and tech enthusiast at heart. I love to play around with emerging technologies and mix and match to develop cross-platform cutting edge applications."
/>
<meta name="twitter:image" content="https://arunredhu.in/assets/images/arun_redhu_preview.jpg" />
<meta property="og:url" content="http://arunredhu.in/" />
<meta property="og:type" content="Portfolio" />
<meta property="og:title" content="Arun Portfolio" />
<meta property="og:description" content="I am a Full-Stack JavaScript developer by profession and tech enthusiast at heart. I love to play around with emerging technologies and mix and match to develop cross-platform cutting edge applications."
/>
<meta property="og:image" content="http://arunredhu.in/assets/images/arun_redhu_preview.jpg" />
<% if (htmlWebpackPlugin.options.manifest.theme_color) { %>
<meta name="theme-color" content="<%= htmlWebpackPlugin.options.manifest.theme_color %>">
<% } %>
<% for (var chunk of webpack.chunks) { %>
<% if (chunk.names.length === 1 && chunk.names[0] === 'polyfills') continue; %>
<% for (var file of chunk.files) { %>
<% if (htmlWebpackPlugin.options.preload && file.match(/\.(js|css)$/)) { %>
<link rel="preload" href="<%= htmlWebpackPlugin.files.publicPath + file %>" as="<%= file.match(/\.css$/)?'style':'script' %>">
<% } else if (file.match(/manifest\.json$/)) { %>
<link rel="manifest" href="<%= htmlWebpackPlugin.files.publicPath + file %>">
<% } %>
<% } %>
<% } %>
</head>
<body oncontextmenu="return false;">
<%= htmlWebpackPlugin.options.ssr({
url: '/'
}) %>
<script defer src="<%= htmlWebpackPlugin.files.chunks['bundle'].entry %>"></script>
<script>window.fetch || document.write('<script src="<%= htmlWebpackPlugin.files.chunks["polyfills"].entry %>"><\/script>')</script>
</body>
</html>