-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
115 lines (85 loc) · 2.81 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
---
---
<!DOCTYPE html>
<head>
<title>IBM Cloud Hyper Protect Services</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="./plex/css/ibm-plex.min.css" rel="stylesheet" type="text/css">
<link href="./style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="title">
<h1><span>IBM Cloud</span> Hyper Protect Services</h1>
<span>Fast Start</span>
</div>
<div id="content">
<p id="serif">Build secure cloud applications using a portfolio of cloud services powered by IBM LinuxONE.</p>
<div id="videos">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/L0h3bewzR8s" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div id="collateral">
<h2>Blogs</h2>
<ul>
{% for link in site.data.blogs %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
</ul>
<h2>Podcasts</h2>
<ul>
{% for link in site.data.podcasts %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div id="sidebar">
<h2>Tutorials</h2>
<ul>
{% for link in site.data.tutorials %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
</ul>
<h2>Code Patterns</h2>
<ul>
{% for link in site.data.code-patterns %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
</ul>
<h2>Videos</h2>
<h3>Crypto Service</h3>
<ul>
{% for link in site.data.videos %}
{% if link.offering == "hpcs" %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3>Virtual Servers</h3>
<ul>
{% for link in site.data.videos %}
{% if link.offering == "hpvs" %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3>DBaaS</h3>
<ul>
{% for link in site.data.videos %}
{% if link.offering == "dbaas" %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h2>Tech Talks</h2>
<ul>
{% for link in site.data.tech-talks %}
<li><a href="{{ link.url }}">{{ link.title }}</a></li>
{% endfor %}
</ul>
</div>
<div id="footer">
<p>IBM Cloud Hyper Protect Services</p>
</div>
</body>