forked from HSWro/hswro_org
Compare commits
6 Commits
37a5b3dbbf
...
198e885597
| Author | SHA1 | Date |
|---|---|---|
|
|
198e885597 | |
|
|
80d92ade8f | |
|
|
5856a7ed86 | |
|
|
8e29adddda | |
|
|
5d97f5bc37 | |
|
|
74211ebdc7 |
|
|
@ -12,6 +12,8 @@ Alternative is to use docker/podman. In the repo directory:
|
|||
docker run -p="4000:4000" --volume="$PWD:/data:Z" -it git.hswro.org/hswro/hswro_org_build:latest
|
||||
```
|
||||
|
||||
Preview should be available on `http://localhost:4000` .
|
||||
|
||||
### Doesn't work for me or I'm too lazy to do it
|
||||
|
||||
Forgejo Actions should generate it for you, then you should be able to download the compressed website ready for viewing locally.
|
||||
|
|
|
|||
|
|
@ -37,6 +37,11 @@
|
|||
},
|
||||
{
|
||||
"title": "Spawalnia",
|
||||
"description": "Znajduje się najgłębszych zakamarkach Hackerspace. Właśnie tam stworzyliśmy niektóre z naszych mebli, na przykład stół do frezarki CNC."
|
||||
"description": "Znajduje się najgłębszych zakamarkach Hackerspace. Właśnie tam stworzyliśmy niektóre z naszych mebli, na przykład stół do frezarki CNC.",
|
||||
"image": {
|
||||
"url": "images/photos/spawalnia.jpeg",
|
||||
"width": 350,
|
||||
"height": 350
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -11,14 +11,6 @@
|
|||
<a href="{{ site.baseurl }}"><img width="{{ site.logo.mobile_footer_width }}" height="{{ site.logo.mobile_footer_height }}" alt="{{ site.title }}" src="{{ site.logo.mobile | relative_url }}" /></a>
|
||||
</div>
|
||||
</h2>
|
||||
<ul>
|
||||
{% assign footermenu = site.data.menus.footer | sort: 'weight' %}
|
||||
{% for item in footermenu %}
|
||||
<li class="{% if item.url == page.url %}active{% endif %}">
|
||||
<a href="{{ item.url | relative_url }}">{{ item.name }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
<button id="toggle-main-menu-mobile" class="hamburger hamburger--slider" type="button" aria-label="Mobile Menu">
|
||||
<span class="hamburger-box">
|
||||
<span class="hamburger-inner"></span>
|
||||
</span>
|
||||
</button>
|
||||
|
|
@ -7,6 +7,5 @@
|
|||
<a href="{{ site.baseurl }}"><img width="{{ site.logo.mobile_width }}" height="{{ site.logo.mobile_height }}" alt="{{ site.title }}" src="{{ site.logo.mobile | relative_url }}" /></a>
|
||||
</div>
|
||||
{% include main-menu.html %}
|
||||
{% include hamburger.html %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
<div id="main-menu-mobile" class="main-menu-mobile">
|
||||
{% assign mainmenu = site.data.menus.main | sort: 'weight' %}
|
||||
<ul>
|
||||
{% for item in mainmenu %}
|
||||
<li class="{% if item.url == page.url %}active{% endif %}">
|
||||
<a href="{{ item.url | relative_url }}">{{ item.name }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
@ -5,9 +5,6 @@
|
|||
<meta charset="utf-8">
|
||||
<title>{% if page.title %}{{page.title}}{% else %}{{ site.title | escape }}{% endif %}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<!--<link rel="icon" type="image/png" href="{{ '/images/favicon-32x32.svg' | relative_url }}">-->
|
||||
<!-- Self host font -->
|
||||
<!-- <link rel="preload" href="{{ '/assets/fonts/playfair-display.woff2' | relative_url }}" as="font" type="font/woff2" crossorigin> -->
|
||||
<link href="{{ '/assets/css/style.css' | relative_url }}" rel="stylesheet">
|
||||
|
||||
{% if page.description %}<meta name="description" content="{{ page.description }}" />{% endif %}
|
||||
|
|
@ -23,7 +20,6 @@
|
|||
</head>
|
||||
|
||||
<body class='page {{layout.bodyClass}}'>
|
||||
{% include main-menu-mobile.html %}
|
||||
<div id="wrapper" class="wrapper">
|
||||
{% include header.html headerClass='header-extra' %}
|
||||
{{content}}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
.feature-title {
|
||||
font-width: bold;
|
||||
margin-top: 0;
|
||||
color: $primary;
|
||||
color: darken($primary, 10%);
|
||||
}
|
||||
.feature-content {
|
||||
margin-bottom: 0;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
.header {
|
||||
color: $primary;
|
||||
background-color: #ffffff;
|
||||
color: #000;
|
||||
background-color: $primary;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
|
|
|||
|
|
@ -1,79 +0,0 @@
|
|||
.main-menu-mobile {
|
||||
position: fixed;
|
||||
background: $primary;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: opacity 0.35s, visibility 0.35s, height 0.35s;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
&.open {
|
||||
opacity: 0.9;
|
||||
visibility: visible;
|
||||
height: 100%;
|
||||
z-index: 20;
|
||||
li {
|
||||
animation: fadeInRight 0.5s ease forwards;
|
||||
animation-delay: 0.35s;
|
||||
&:nth-of-type(2) {
|
||||
animation-delay: 0.4s;
|
||||
}
|
||||
&:nth-of-type(3) {
|
||||
animation-delay: 0.45s;
|
||||
}
|
||||
&:nth-of-type(4) {
|
||||
animation-delay: 0.5s;
|
||||
}
|
||||
&:nth-of-type(5) {
|
||||
animation-delay: 0.55s;
|
||||
}
|
||||
&:nth-of-type(6) {
|
||||
animation-delay: 0.6s;
|
||||
}
|
||||
}
|
||||
}
|
||||
ul {
|
||||
font-size: 30px;
|
||||
font-family: $font-family-heading;
|
||||
text-align: center;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
flex: 0;
|
||||
li {
|
||||
display: block;
|
||||
position: relative;
|
||||
opacity: 0;
|
||||
padding: 10px;
|
||||
a {
|
||||
display: block;
|
||||
position: relative;
|
||||
color: #ffffff;
|
||||
text-decoration: none;
|
||||
overflow: hidden;
|
||||
&:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@keyframes fadeInRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
left: 20%;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
.lock-scroll {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
|
@ -1,8 +1,5 @@
|
|||
.main-menu {
|
||||
display: none;
|
||||
@include media-breakpoint-up(md) {
|
||||
display: block;
|
||||
}
|
||||
display: block;
|
||||
> ul {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
@ -15,7 +12,7 @@
|
|||
display: inline-block;
|
||||
font-weight: normal;
|
||||
text-decoration: none;
|
||||
color: $primary;
|
||||
color: #000;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -89,7 +89,6 @@ $sub-footer-text-color: $white;
|
|||
@import "components/sub-footer";
|
||||
@import "components/logo";
|
||||
@import "components/main-menu";
|
||||
@import "components/main-menu-mobile";
|
||||
@import "components/hamburger";
|
||||
@import "components/buttons";
|
||||
@import "components/call";
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 355 KiB |
18
kontakt.md
18
kontakt.md
|
|
@ -5,15 +5,17 @@ layout: page
|
|||
|
||||
# Kontakt
|
||||
|
||||
Najłatwiej się z nami skontaktować na telegramie lub forum:
|
||||
Najłatwiej się z nami skontaktować na czacie. Mamy połączone kanały na różnych platformach:
|
||||
[Telegram](https://t.me/hackerspace_wroclaw), [Matrix #public:hswro.org](https://matrix.to/#/#public:hswro.org), [IRC #hswro@libera](irc://irc.libera.chat/hswro), [XMPP hswro_public@muc.jix.im](xmpp:hswro_public@muc.jix.im?join)
|
||||
|
||||
* Telegram: [@hackerspace_wroclaw](https://t.me/hackerspace_wroclaw)
|
||||
* Forum: <https://forum.hswro.org>
|
||||
* Meetup: <https://www.meetup.com/hackerspace-wrocław>
|
||||
* Mobilizon (fediverse): <https://mobilizon.pl/@hswro>
|
||||
* Facebook: <https://www.facebook.com/HackerspaceWroclaw>
|
||||
* E-mail: <kontakt@hswro.org>
|
||||
* Telefon stacjonarny: +48 717072457
|
||||
Do spraw wartych udokumentowania i omawiania projektów używamy [Forum](https://forum.hswro.org)
|
||||
|
||||
Mamy również konta na kilku platformach społecznościowych:
|
||||
[Meetup](https://www.meetup.com/hackerspace-wrocław), [Facebook](https://www.facebook.com/HackerspaceWroclaw), [Mobilizon (fediverse)](https://mobilizon.pl/@hswro)
|
||||
|
||||
Do oficjalnego kontaktu służy e-mail: [kontakt@hswro.org](mailto:kontakt@hswro.org)
|
||||
|
||||
Aby sprawdzić, czy ktoś akurat jest w naszej siedzibie możesz zadzwonić na telefon stacjonarny: [+48 717072457](tel:+48717072457)
|
||||
|
||||
Jeśli chcesz nas odwiedzić zapraszamy w każdą środę od 19 na teren dawnej zajezdni tramwajowej.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue