generated from axherrm/WebCVTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
Submodule core
updated
6 files
+38 −0 | .github/workflows/release.yml | |
+28 −0 | LICENSE | |
+13 −0 | README.md | |
+2 −2 | angular.json | |
+2 −2 | package.json | |
+0 −36 | src/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>CV - Axel Herrmann</title> | ||
<base href="/"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<!-- TODO --> | ||
<meta name="keywords" content="Curriculum Vitae, CV, Curriculum Vitae Website, CV Website, CV template, template, website template"> | ||
<meta name="description" content="Easy to use template for your own CV website."> | ||
|
||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css?family=Montserrat:300" rel="stylesheet"> | ||
<!-- Source: https://www.onlinewebfonts.com/download/483f8a5e2868222491b8baed78121c3a --> | ||
<link href="https://db.onlinewebfonts.com/c/483f8a5e2868222491b8baed78121c3a?family=Copperplate+Gothic" rel="stylesheet"> | ||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/lipis/[email protected]/css/flag-icons.min.css"/> | ||
|
||
<!-- Generated with: https://favicon.io/favicon-converter/ --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png"> | ||
<link rel="manifest" href="./site.webmanifest"> | ||
</head> | ||
<body> | ||
<app-root></app-root> | ||
<noscript> | ||
<div style="display: flex; flex-direction: column; align-items: center"> | ||
<h1>Curriculum Vitae</h1> | ||
<h3>For this website to work as intended, JavaScript is required. Please reload this page with JavaScript enabled.</h3> | ||
<h3>In case you don't want to do that, a static CV is available <a href="./assets/CV-static.pdf">here</a>.</h3> | ||
</div> | ||
</noscript> | ||
</body> | ||
</html> |