Skip to content

Commit

Permalink
Pequeños retoques
Browse files Browse the repository at this point in the history
  • Loading branch information
picodotdev committed Dec 14, 2024
1 parent 63f1470 commit d7f36d1
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 3 deletions.
7 changes: 4 additions & 3 deletions themes/bitix/layouts/partials/html-head.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink }}" hreflang="{{ $.Language.Lang }}" title="{{ $.Page.Title }}">
{{ end }}
<link rel="humans" type="text/plain" href="{{ "humans.txt" | relURL }}">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preload" href="https://fonts.googleapis.com/css?family=PT+Serif:400,400i,700,700i&display=swap" as="style">
<link href="https://fonts.googleapis.com/css?family=PT+Serif:400,400i,700,700i&display=swap" rel="stylesheet">
<link rel="preload" href="{{ "asssets/fonts/pt-serif/pt-serif.css" | relURL }}" as="style">
<link rel="preload" href="{{ "asssets/fonts/open-sans/open-sans.css" | relURL }}" as="style">
<link href="{{ "assets/fonts/pt-serif/pt-serif.css" | relURL }}" rel="stylesheet">
<link href="{{ "assets/fonts/open-sans/open-sans.css" | relURL }}" rel="stylesheet">

{{ if eq (in (split "home,page" ",") .Page.Kind) false }}<meta name="robots" content="noindex">{{ end }}

Expand Down
Binary file not shown.
9 changes: 9 additions & 0 deletions themes/bitix/static/assets/fonts/open-sans/open-sans.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* open-sans-light */
@font-face {
font-family: Open Sans;
font-style: normal;
font-weight: 300;
font-stretch: 100%;
src: local("Open Sans Light"), local("OpenSans-Light"), url(open-sans-light.woff2) format("woff2");
}

Binary file not shown.
Binary file not shown.
Binary file not shown.
33 changes: 33 additions & 0 deletions themes/bitix/static/assets/fonts/pt-serif/pt-serif.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/* pt-serif-bold */
@font-face {
font-family: PT Serif;
font-style: normal;
font-weight: 700;
font-stretch: 100%;
src: local("PT Serif Bold"), local("PTSerif-Bold"), url(pt-serif-bold.woff2) format("woff2");
}
/* pt-serif */
@font-face {
font-family: PT Serif;
font-style: normal;
font-weight: 400;
font-stretch: 100%;
src: local("PT Serif"), local("PTSerif-Regular"), url(pt-serif.woff2) format("woff2");
}
/* pt-serif-bold-italic */
@font-face {
font-family: PT Serif;
font-style: italic;
font-weight: 700;
font-stretch: 100%;
src: local("PT Serif Bold Italic"), local("PTSerif-BoldItalic"), url(pt-serif-bold-italic.woff2) format("woff2");
}
/* pt-serif-italic */
@font-face {
font-family: PT Serif;
font-style: italic;
font-weight: 400;
font-stretch: 100%;
src: local("PT Serif Italic"), local("PTSerif-Italic"), url(pt-serif-italic.woff2) format("woff2");
}

Binary file not shown.

0 comments on commit d7f36d1

Please sign in to comment.