1
0

Organize sections

This commit is contained in:
Serghei Cebotari 2023-12-02 23:16:25 +03:00
parent 91709c3567
commit 0e0251936b
10 changed files with 10 additions and 10 deletions

View File

@ -5,7 +5,7 @@
<title>{{ .Site.Title }}</title> <title>{{ .Site.Title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8" /> <meta charset="utf-8" />
{{ partial "head/style.html" . }} {{ partial "style.html" . }}
</head> </head>
<body> <body>

View File

View File

View File

@ -1,9 +1,9 @@
{{ define "main" }} {{ define "main" }}
<page> <section class="page">
{{ partial "body/contacts.html" . }} {{ partial "sections/contacts.html" . }}
{{ partial "body/education.html" . }} {{ partial "sections/education.html" . }}
{{ partial "body/experience.html" . }} {{ partial "sections/experience.html" . }}
{{ partial "body/projects.html" . }} {{ partial "sections/projects.html" . }}
{{ partial "body/skills.html" . }} {{ partial "sections/skills.html" . }}
</page> </section>
{{ end }} {{ end }}

View File

@ -38,7 +38,7 @@
line-height: 100%; line-height: 100%;
} }
page { .page {
background: white; background: white;
display: block; display: block;
margin: 0 auto; margin: 0 auto;
@ -96,7 +96,7 @@
@media print { @media print {
body, body,
page { .page {
background: white; background: white;
margin: 0; margin: 0;
box-shadow: 0 0 0 white; box-shadow: 0 0 0 white;