mirror of
https://gitlab.com/Titan-C/org-cv.git
synced 2024-11-15 11:08:30 +00:00
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="description" content="" />
|
|
<meta name="author" content="" />
|
|
<base href="{{ .Site.BaseURL }}" />
|
|
<title>{{ .Title }}</title>
|
|
|
|
<!-- Bootstrap Core CSS -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
|
|
integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<!-- Custom CSS -->
|
|
<link href="css/landing-page.css" rel="stylesheet" />
|
|
<link href="css/cv.css" rel="stylesheet" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
|
|
/>
|
|
|
|
<!-- Custom Fonts -->
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic"
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
/>
|
|
|
|
<style>
|
|
{{ printf "%v" (partial "template.css" . ) | safeCSS }}
|
|
</style>
|
|
</head>
|
|
</html>
|