Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preview strony projektu dla social mediów #41

Merged
merged 4 commits into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,8 @@ plural = "articles"
[module]
[[module.mounts]]
target = "assets/images"
source = "static/images"
source = "static/images"

[params]
[params.project]
title = 'Projekty KNR'
2 changes: 2 additions & 0 deletions content/article/rekrutacja.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: Rekrutacja
url: /rekrutacja
main_project_image: "images/team_cut.jpg"
short_description: Czy marzysz o fascynującej przygodzie w świat robotyki i nowoczesnych technologii?
---


Expand Down
2 changes: 1 addition & 1 deletion content/project/hal.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ main_site_item_images:
# - 5.jpg
title: Łazik HAL-062
short_title: HAL-062
short_description: " "
short_description: "Specjalny pojazd zaprojektowany do badania i eksploracji powierzchni Marsa"
---
Łazik marsjański to specjalny pojazd zaprojektowany do badania i eksploracji powierzchni Marsa, a "HAL-062" jest efektem naszej wizji o eksploracji kosmosu. Ponadto "HAL-062" stanowi naszą odpowiedź na wyzwania stawiane przez prestiżowe zawody, takie jak [University Rover Challenge](https://urc.marssociety.org/) w USA, [European Rover Challenge](https://roverchallenge.eu/) w Kielcach oraz [Anatolian Rover Challenge](https://www.anatolianrover.space/) w Turcji. Wyposażony w zawieszenie typu Rocker-Bogie, napęd różnicowy, manipulator o 6 stopniach swobody, kamery i GPS, jest używany do autonomicznej nawigacji. Obecnie, w 2023 roku, cieszymy się z faktu, że już trzecia iteracja łazika "HAL-062" jest przygotowywana do udziału w kolejnych edycjach międzynarodowych konkursów.

Expand Down
41 changes: 40 additions & 1 deletion layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,46 @@
<link rel="stylesheet" type="text/css" href="/css/slick-theme.css" />
<link rel="stylesheet" href="/css/aos.css" />
<link rel="stylesheet" href="/css/style.css" />
<title>{{ .Title }}</title>

<!-- Zdjęcia podglądów dla social mediów -->
{{ if .Params.archive_image }}
{{ $image := resources.GetMatch .Params.archive_image }}
{{ with $image }}
<meta property="og:image" content="{{ ( $image.Fit `1200x630 q75` ).RelPermalink }}" />
{{ end }}
{{ else if .Params.main_project_image }}
{{ $image := resources.GetMatch .Params.main_project_image }}
{{ with $image }}
<meta property="og:image" content="{{ ( $image.Fit `1200x630 q75` ).RelPermalink }}" />
{{ end }}
{{ else }}
<!-- domyślne zdjęcie -->
<meta property="og:image" content="/images/hal.jpg" />
{{ end }}

<!-- opis podglądu social mediów -->
{{ if .Params.short_description }}
<meta property="og:description" content="{{ .Params.short_description }}">
{{ end }}

<meta property="og:url" content="{{ .Permalink }}">


<!-- tytuły strony domyślnie, zmiana dla archiwum -->
<title property="og:title" >
{{ if ne .Section "project" }}
{{ .Title }}
{{ else }}
{{ .Site.Params.project.title }} {{ with .Params.Title }} - {{ . }} {{ end }}
{{ end }}
</title>

<meta property="og:type" content="article">

<title>

</title>

</head>
<body>
<header id="header" class="header">
Expand Down