-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcertification.html
More file actions
47 lines (45 loc) · 1.69 KB
/
Copy pathcertification.html
File metadata and controls
47 lines (45 loc) · 1.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Certification — schema.org app</title>
<link rel="stylesheet" href="./app.css" />
</head>
<body>
<!-- JSON-LD data island -->
<script type="application/ld+json" id="data">
{
"@context": "https://schema.org",
"@type": "Certification",
"name": "AWS Certified Solutions Architect – Associate",
"description": "Validates expertise in designing distributed systems on AWS, including compute, networking, storage, and database services. Covers high-availability architectures, cost-optimization, and security best practices.",
"issuedBy": "Amazon Web Services (AWS)",
"datePublished": "2024-03-15",
"expires": "2027-03-15",
"identifier": "AWS-CSA-2024-7A3F9E2D",
"url": "https://aws.amazon.com/certification/certified-solutions-architect-associate/"
}
</script>
<main id="app"></main>
<!-- per-type config: this is the ONLY thing that changes between apps -->
<script>
window.APP = {
type: "Certification",
titleProp: "name",
icon: "\u{1F4DC}",
accent: "#0e7490",
fields: [
{ prop: "name", label: "Name", type: "text" },
{ prop: "description", label: "Description", type: "textarea" },
{ prop: "issuedBy", label: "Issued by", type: "text" },
{ prop: "datePublished", label: "Date published", type: "text" },
{ prop: "expires", label: "Expires", type: "text" },
{ prop: "identifier", label: "Identifier", type: "text" },
{ prop: "url", label: "Website", type: "url" },
],
};
</script>
<script src="./app.js"></script>
</body>
</html>