aplay latest design
16
README.md
@@ -19,11 +19,15 @@ A live server can be started as usual with hugo:
|
||||
|
||||
## Deployment
|
||||
|
||||
The build and deploy workflow is provided by the contained shell script `build+deploy.sh`.
|
||||
|
||||
**Tasks:**
|
||||
|
||||
- clean the output folder
|
||||
- build the project
|
||||
- upload to the remote SSH target
|
||||
|
||||
```bash
|
||||
rm -rf public
|
||||
hugo
|
||||
rsync --archive --delete --exclude /.htpasswd public/ \
|
||||
ecg00-portal@ecg00.hostsharing.net:doms/my.ecogood.world/htdocs-ssl/
|
||||
rsync --archive public/.htpasswd \
|
||||
ecg00-portal@ecg00.hostsharing.net:doms/my.ecogood.world/
|
||||
chmod +x build+deploy.sh
|
||||
./build+deploy.sh
|
||||
```
|
||||
12
build+deploy.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env sh
|
||||
# Build site and deploy to remote via SSH
|
||||
set -o nounset ## set -u : exit the script if you try to use an uninitialised variable
|
||||
set -o errexit ## set -e : exit the script if any statement returns a non-true return value
|
||||
#set -o xtrace ## set -x : Print command traces before executing command
|
||||
|
||||
rm -rf public
|
||||
hugo
|
||||
rsync -v --archive --delete --exclude /.htpasswd public/ \
|
||||
ecg00-portal@ecg00.hostsharing.net:doms/my.ecogood.world/htdocs-ssl/
|
||||
rsync -v --archive public/.htpasswd \
|
||||
ecg00-portal@ecg00.hostsharing.net:doms/my.ecogood.world/
|
||||
@@ -1,48 +1,60 @@
|
||||
---
|
||||
languages: ['en', 'de', 'fr']
|
||||
items:
|
||||
# - url: https://forum.ecogood.org
|
||||
# solution: DIscourse
|
||||
# title:
|
||||
# en: Forum
|
||||
# de: Discussion Board
|
||||
# fr: Forum
|
||||
# cssClass: forum
|
||||
- url: https://wiki.ecogood.org
|
||||
title: Wiki (Confluence)
|
||||
description:
|
||||
en: Documentation platform
|
||||
de: Dokumentationsplattform
|
||||
fr: plate-forme de documentation
|
||||
icon: confluence.svg
|
||||
solution: Confluence
|
||||
title:
|
||||
en: Wiki
|
||||
de: Wiki
|
||||
fr: Wiki
|
||||
cssClass: wiki
|
||||
- url: https://jira.ecogood.org
|
||||
title: Tickets (JIRA)
|
||||
description:
|
||||
solution: JIRA
|
||||
title:
|
||||
en: Ticket system
|
||||
de: Ticketsystem für Aufgaben, Fehlermeldung und Projektplanung
|
||||
de: Ticketsystem
|
||||
fr: Système de billets
|
||||
icon: jira.svg
|
||||
cssClass: projekte
|
||||
- url: https://mail.ecogood.org
|
||||
title: E-Mail (Zimbra)
|
||||
description:
|
||||
solution: Zimbra
|
||||
title:
|
||||
en: Webmail
|
||||
de: Mailverwaltung
|
||||
de: E-Mail
|
||||
fr: Administration du courrier
|
||||
icon: zimbra.png
|
||||
cssClass: mail
|
||||
- url: https://list.ecogood.org
|
||||
title: Mailinglisten (Sympa)
|
||||
description:
|
||||
solution: Sympa
|
||||
title:
|
||||
en: E-Mail lists
|
||||
de: Gruppenkommunikation per E-Mail
|
||||
de: Mailinglisten
|
||||
fr: Communication de groupe par e-mail
|
||||
icon: sympa.png
|
||||
cssClass: maillist
|
||||
- url: https://datacloud.ecogood.org
|
||||
title: Nextcloud
|
||||
description:
|
||||
description:
|
||||
en: File based cloud application platform
|
||||
de: Datenspeicher und Austausch, Kalender, Kontakte, Online-Office
|
||||
fr: Stockage de données dans le cloud
|
||||
icon: nextcloud.png
|
||||
solution: Nextcloud
|
||||
title:
|
||||
en: File exchange
|
||||
de: Datenspeicher
|
||||
fr: Données dans le cloud
|
||||
cssClass: cloud
|
||||
- url: https://backoffice.ecogood.org
|
||||
title: Backoffice (SmartWE)
|
||||
description:
|
||||
description:
|
||||
solution: SmartWE
|
||||
title:
|
||||
en: Membership managment
|
||||
de: Mitgliederverwaltung
|
||||
fr: gestion des membres
|
||||
icon: cas.png
|
||||
cssClass: smartwe
|
||||
# - url: https://gitea.ecogood.org
|
||||
# solution: Gitea
|
||||
# title:
|
||||
# en: Code repo
|
||||
# de: Quellcode
|
||||
# fr: Codé
|
||||
# cssClass: code
|
||||
|
||||
---
|
||||
|
||||
@@ -10,8 +10,6 @@
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
</head>
|
||||
<body style="background-image: url({{ "background.png" | absURL }});">
|
||||
<h1 style="text-align: center">Ecogood Portal</h1>
|
||||
|
||||
{{ block "main" . }}{{ end }}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,29 +1,57 @@
|
||||
{{ define "main" }}
|
||||
<h1 style="text-align: center">{{ .Title }}</h1>
|
||||
<img style="display:block; width: 80%; max-width: 500px; margin:auto" src="{{ "ecg-portal-logo.png" | absURL }}" />
|
||||
|
||||
<div>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
|
||||
<div id="epframe">
|
||||
{{ range .Params.items }}
|
||||
<a class="item-box" href="{{ .url }}" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="{{ .icon | absURL }}"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>{{ .title }}</h2>
|
||||
{{ $found := false }}
|
||||
{{ range $key, $value := .description }}
|
||||
<a href="{{ .url }}" target="_blank">
|
||||
<div class="epsquare epcol{{ .cssClass }}">
|
||||
<div class="eptextfunc">{{ $found := false }}
|
||||
{{ range $key, $value := .title }}
|
||||
{{ if eq (string $.Site.Language) $key }}
|
||||
<p>{{ $value }}</p>
|
||||
{{ $value }}
|
||||
{{ $found = true }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{ if eq $found false }}
|
||||
<p>{{ .description.en }}</p>
|
||||
{{ end }}
|
||||
</div>
|
||||
</a>
|
||||
{{ .title.en }}
|
||||
{{ end }}</div>
|
||||
|
||||
<div class="eptexttool">{{ .solution }}</div>
|
||||
</div></a>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
|
||||
<!--Platzhalter-->
|
||||
<div class="epsquareplus"></div>
|
||||
</div>
|
||||
|
||||
<div id="epframe">
|
||||
<a href="https://www.ecogood.org/media/filer_public/73/da/73dab961-6125-4f69-bf7a-3c8613a90739/gwoe_arbeitsbuch_5_0_vollbilanz.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image: url({{ "gwoe-arbeitsbuch-5v.jpg" | absURL }});"></div>
|
||||
</a>
|
||||
|
||||
<a href="https://www.ecogood.org/media/filer_public/04/8e/048e113f-5802-494e-866b-c3f8c8a6a674/gwoe_arbeitsbuch_5_0_kompaktbilanz.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image: url({{ "gwoe-arbeitsbuch-5k.jpg" | absURL }});">
|
||||
</div></a>
|
||||
|
||||
<a href="https://wiki.ecogood.org/download/attachments/10649644/GW%C3%96_Umgangskodex.pdf?version=2&modificationDate=1516310958744&api=v2" target="_blank">
|
||||
<div class="epsrect" style="background-image:url({{ "epecg.png" | absURL }});">
|
||||
<div class="eptextfunc" style="color: #5a5a5a; text-transform:uppercase; text-align:left;padding-left:24px; font-size: 95%">Umgangs<br />kodex</div></div>
|
||||
</a>
|
||||
|
||||
<a href="https://wiki.ecogood.org/pages/viewpage.action?pageId=33949627&preview=/12359328/26348450/GWOE_Regelwerk1804.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image:url({{ "gwoe-regelwerk.jpg" | absURL }}); background-size:100%;">
|
||||
</div></a>
|
||||
</div>
|
||||
|
||||
<!--Platzhalter-->
|
||||
<div class="epsquareplus"></div>
|
||||
<!--Platzhalter-->
|
||||
<div class="epsquareplus"></div>
|
||||
{{ end }}
|
||||
|
||||
BIN
public/cas.png
|
Before Width: | Height: | Size: 4.6 KiB |
@@ -1,111 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="0 0 128 128"
|
||||
version="1.1"
|
||||
id="svg40"
|
||||
sodipodi:docname="confluence.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
width="128"
|
||||
height="128">
|
||||
<metadata
|
||||
id="metadata44">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Confluence-blue</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1129"
|
||||
id="namedview42"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.5361574"
|
||||
inkscape:cx="163.59546"
|
||||
inkscape:cy="65.825847"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="49"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg40"
|
||||
showborder="true"
|
||||
borderlayer="false"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:pagecheckerboard="false" />
|
||||
<defs
|
||||
id="defs10">
|
||||
<style
|
||||
id="style2">.cls-1{fill:#253858;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:url(#linear-gradient-2);}</style>
|
||||
<linearGradient
|
||||
id="linear-gradient"
|
||||
x1="59.68"
|
||||
y1="67.650002"
|
||||
x2="20.35"
|
||||
y2="45.049999"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0.18"
|
||||
stop-color="#0052cc"
|
||||
id="stop4" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#2684ff"
|
||||
id="stop6" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linear-gradient-2"
|
||||
x1="279.76001"
|
||||
y1="-1616.34"
|
||||
x2="240.42"
|
||||
y2="-1638.95"
|
||||
gradientTransform="rotate(180,141.415,-776.27)"
|
||||
xlink:href="#linear-gradient" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linear-gradient"
|
||||
id="linearGradient3749"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="59.68"
|
||||
y1="67.650002"
|
||||
x2="20.35"
|
||||
y2="45.049999"
|
||||
gradientTransform="translate(0,64.169998)" />
|
||||
</defs>
|
||||
<title
|
||||
id="title12">Confluence-blue</title>
|
||||
<g
|
||||
id="g25"
|
||||
transform="matrix(2.0349222,0,0,2.0349222,0.3332851,-132.45786)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient3749)"
|
||||
id="path34"
|
||||
d="m 2.23,113.7 c -0.65,1.06 -1.38,2.29 -2,3.27 a 2,2 0 0 0 0.67,2.72 l 13,8 a 2,2 0 0 0 2.77,-0.68 c 0.52,-0.87 1.19,-2 1.92,-3.21 5.15,-8.5 10.33,-7.46 19.67,-3 l 12.89,6.13 a 2,2 0 0 0 2.69,-1 l 6.19,-14 a 2,2 0 0 0 -1,-2.62 c -2.72,-1.28 -8.13,-3.83 -13,-6.18 C 28.51,94.619998 13.62,95.169998 2.23,113.7 Z"
|
||||
class="cls-2" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linear-gradient-2)"
|
||||
id="path36"
|
||||
d="m 60.52,81.929998 c 0.65,-1.06 1.38,-2.29 2,-3.27 a 2,2 0 0 0 -0.67,-2.72 l -13,-8 a 2,2 0 0 0 -2.85,0.66 c -0.52,0.87 -1.19,2 -1.92,3.21 -5.15,8.5 -10.33,7.46 -19.67,3 l -12.85,-6.1 a 2,2 0 0 0 -2.69,1 l -6.19,14 a 2,2 0 0 0 1,2.62 c 2.72,1.28 8.13,3.83 13,6.18 17.56,8.500002 32.45,7.930002 43.84,-10.58 z"
|
||||
class="cls-3" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -10,26 +10,21 @@
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
</head>
|
||||
<body style="background-image: url(https://my.ecogood.world/background.png);">
|
||||
<h1 style="text-align: center">Ecogood Portal</h1>
|
||||
|
||||
|
||||
<h1 style="text-align: center"></h1>
|
||||
<img style="display:block; width: 80%; max-width: 500px; margin:auto" src="https://my.ecogood.world/ecg-portal-logo.png" />
|
||||
|
||||
<div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="epframe">
|
||||
|
||||
<a class="item-box" href="https://wiki.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/confluence.svg"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Wiki (Confluence)</h2>
|
||||
|
||||
<a href="https://wiki.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolwiki">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
<p>Dokumentationsplattform</p>
|
||||
Wiki
|
||||
|
||||
|
||||
|
||||
@@ -38,20 +33,17 @@
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Confluence</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://jira.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/jira.svg"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Tickets (JIRA)</h2>
|
||||
|
||||
<a href="https://jira.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolprojekte">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
<p>Ticketsystem für Aufgaben, Fehlermeldung und Projektplanung</p>
|
||||
Ticketsystem
|
||||
|
||||
|
||||
|
||||
@@ -60,20 +52,17 @@
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">JIRA</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://mail.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/zimbra.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>E-Mail (Zimbra)</h2>
|
||||
|
||||
<a href="https://mail.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolmail">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
<p>Mailverwaltung</p>
|
||||
E-Mail
|
||||
|
||||
|
||||
|
||||
@@ -82,20 +71,17 @@
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Zimbra</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://list.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/sympa.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Mailinglisten (Sympa)</h2>
|
||||
|
||||
<a href="https://list.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolmaillist">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
<p>Gruppenkommunikation per E-Mail</p>
|
||||
Mailinglisten
|
||||
|
||||
|
||||
|
||||
@@ -104,20 +90,17 @@
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Sympa</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://datacloud.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/nextcloud.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Nextcloud</h2>
|
||||
|
||||
<a href="https://datacloud.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolcloud">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
<p>Datenspeicher und Austausch, Kalender, Kontakte, Online-Office</p>
|
||||
Datenspeicher
|
||||
|
||||
|
||||
|
||||
@@ -126,20 +109,17 @@
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Nextcloud</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://backoffice.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/cas.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Backoffice (SmartWE)</h2>
|
||||
|
||||
<a href="https://backoffice.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolsmartwe">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
<p>Mitgliederverwaltung</p>
|
||||
Mitgliederverwaltung
|
||||
|
||||
|
||||
|
||||
@@ -148,10 +128,41 @@
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">SmartWE</div>
|
||||
</div></a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="epsquareplus"></div>
|
||||
</div>
|
||||
|
||||
<div id="epframe">
|
||||
<a href="https://www.ecogood.org/media/filer_public/73/da/73dab961-6125-4f69-bf7a-3c8613a90739/gwoe_arbeitsbuch_5_0_vollbilanz.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image: url(https://my.ecogood.world/gwoe-arbeitsbuch-5v.jpg);"></div>
|
||||
</a>
|
||||
|
||||
<a href="https://www.ecogood.org/media/filer_public/04/8e/048e113f-5802-494e-866b-c3f8c8a6a674/gwoe_arbeitsbuch_5_0_kompaktbilanz.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image: url(https://my.ecogood.world/gwoe-arbeitsbuch-5k.jpg);">
|
||||
</div></a>
|
||||
|
||||
<a href="https://wiki.ecogood.org/download/attachments/10649644/GW%C3%96_Umgangskodex.pdf?version=2&modificationDate=1516310958744&api=v2" target="_blank">
|
||||
<div class="epsrect" style="background-image:url(https://my.ecogood.world/epecg.png);">
|
||||
<div class="eptextfunc" style="color: #5a5a5a; text-transform:uppercase; text-align:left;padding-left:24px; font-size: 95%">Umgangs<br />kodex</div></div>
|
||||
</a>
|
||||
|
||||
<a href="https://wiki.ecogood.org/pages/viewpage.action?pageId=33949627&preview=/12359328/26348450/GWOE_Regelwerk1804.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image:url(https://my.ecogood.world/gwoe-regelwerk.jpg); background-size:100%;">
|
||||
</div></a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="epsquareplus"></div>
|
||||
|
||||
<div class="epsquareplus"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
BIN
public/ecg-portal-logo.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
@@ -1,6 +1,12 @@
|
||||
body {
|
||||
color: #333;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 1rem;
|
||||
|
||||
margin:0;
|
||||
padding:0;
|
||||
text-align:center;
|
||||
display:block;
|
||||
}
|
||||
|
||||
a {
|
||||
@@ -8,8 +14,9 @@ a {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/*
|
||||
.item-box {
|
||||
border-radius: 15px;
|
||||
border-radius: 15px;
|
||||
position: relative;
|
||||
float: left;
|
||||
|
||||
@@ -40,3 +47,137 @@ h2 {
|
||||
font-size: 26px;
|
||||
font-weight: 500;
|
||||
}
|
||||
*/
|
||||
|
||||
#epframe {
|
||||
margin: auto;
|
||||
max-width: 900px;
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.epsquare,
|
||||
.epsquareplus {
|
||||
width: 23%;
|
||||
padding-bottom: 23%;
|
||||
position: relative;
|
||||
margin: 0.5%;
|
||||
display: inline-block;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.epsquareplus {
|
||||
padding-bottom: 0
|
||||
}
|
||||
|
||||
.epsrect {
|
||||
width: 23%;
|
||||
padding-bottom: 32.2%;
|
||||
background-color: none;
|
||||
position: relative;
|
||||
margin: 0.5%;
|
||||
display: inline-block;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.eptextfunc {
|
||||
width: 100%;
|
||||
font-weight: bold;
|
||||
position: absolute;
|
||||
color: white;
|
||||
bottom: 20%;
|
||||
font-size: 1.35rem
|
||||
}
|
||||
|
||||
.eptexttool {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
color: white;
|
||||
bottom: 8%;
|
||||
}
|
||||
|
||||
.epcolwiki {
|
||||
background-color: #009da5;
|
||||
background-image: url(epwiki.png);
|
||||
}
|
||||
|
||||
.epcolprojekte {
|
||||
background-color: #889e33;
|
||||
background-image: url(epprojekte.png);
|
||||
}
|
||||
|
||||
.epcolmail {
|
||||
background-color: #0099CC;
|
||||
background-image: url(epmail.png);
|
||||
}
|
||||
|
||||
.epcolmaillist {
|
||||
background-color: #99CC00;
|
||||
background-image: url(epmaillist.png);
|
||||
}
|
||||
|
||||
.epcolcloud {
|
||||
background-color: #3B6CA6;
|
||||
background-image: url(epcloud.png);
|
||||
}
|
||||
|
||||
.epcolsmartwe {
|
||||
background-color: #E05656;
|
||||
background-image: url(epsmartwe.png);
|
||||
}
|
||||
|
||||
.epcolcode {
|
||||
background-color: #40B075;
|
||||
background-image: url(epcode.png);
|
||||
}
|
||||
|
||||
.epcolforum {
|
||||
background-color: #FF9900;
|
||||
background-image: url(epforum.png);
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 900px) {
|
||||
.epsquare {
|
||||
width: 30%;
|
||||
padding-bottom: 30%;
|
||||
}
|
||||
.epsrect {
|
||||
width: 30%;
|
||||
padding-bottom: 42%;
|
||||
}
|
||||
.epsquareplus {
|
||||
width: 30%;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 640px) {
|
||||
.epsquare {
|
||||
width: 40%;
|
||||
padding-bottom: 40%;
|
||||
}
|
||||
.epsrect {
|
||||
width: 40%;
|
||||
padding-bottom: 56%;
|
||||
}
|
||||
.epsquareplus {
|
||||
width: 40%;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 450px) {
|
||||
.epsquare {
|
||||
width: 50%;
|
||||
padding-bottom: 50%;
|
||||
margin: 1.5%;
|
||||
}
|
||||
.epsrect {
|
||||
width: 50%;
|
||||
padding-bottom: 70%;
|
||||
margin: 1.5%;
|
||||
}
|
||||
.epsquareplus {
|
||||
width: 50%;
|
||||
margin: 1.5%;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,148 +10,159 @@
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
</head>
|
||||
<body style="background-image: url(https://my.ecogood.world/background.png);">
|
||||
<h1 style="text-align: center">Ecogood Portal</h1>
|
||||
|
||||
|
||||
<h1 style="text-align: center"></h1>
|
||||
<img style="display:block; width: 80%; max-width: 500px; margin:auto" src="https://my.ecogood.world/ecg-portal-logo.png" />
|
||||
|
||||
<div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="epframe">
|
||||
|
||||
<a class="item-box" href="https://wiki.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/confluence.svg"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Wiki (Confluence)</h2>
|
||||
|
||||
<a href="https://wiki.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolwiki">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
<p>Documentation platform</p>
|
||||
Wiki
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Confluence</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://jira.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/jira.svg"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Tickets (JIRA)</h2>
|
||||
|
||||
<a href="https://jira.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolprojekte">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
<p>Ticket system</p>
|
||||
Ticket system
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">JIRA</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://mail.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/zimbra.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>E-Mail (Zimbra)</h2>
|
||||
|
||||
<a href="https://mail.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolmail">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
<p>Webmail</p>
|
||||
Webmail
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Zimbra</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://list.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/sympa.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Mailinglisten (Sympa)</h2>
|
||||
|
||||
<a href="https://list.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolmaillist">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
<p>E-Mail lists</p>
|
||||
E-Mail lists
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Sympa</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://datacloud.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/nextcloud.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Nextcloud</h2>
|
||||
|
||||
<a href="https://datacloud.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolcloud">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
<p>File based cloud application platform</p>
|
||||
File exchange
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Nextcloud</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://backoffice.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/cas.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Backoffice (SmartWE)</h2>
|
||||
|
||||
<a href="https://backoffice.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolsmartwe">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
<p>Membership managment</p>
|
||||
Membership managment
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">SmartWE</div>
|
||||
</div></a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="epsquareplus"></div>
|
||||
</div>
|
||||
|
||||
<div id="epframe">
|
||||
<a href="https://www.ecogood.org/media/filer_public/73/da/73dab961-6125-4f69-bf7a-3c8613a90739/gwoe_arbeitsbuch_5_0_vollbilanz.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image: url(https://my.ecogood.world/gwoe-arbeitsbuch-5v.jpg);"></div>
|
||||
</a>
|
||||
|
||||
<a href="https://www.ecogood.org/media/filer_public/04/8e/048e113f-5802-494e-866b-c3f8c8a6a674/gwoe_arbeitsbuch_5_0_kompaktbilanz.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image: url(https://my.ecogood.world/gwoe-arbeitsbuch-5k.jpg);">
|
||||
</div></a>
|
||||
|
||||
<a href="https://wiki.ecogood.org/download/attachments/10649644/GW%C3%96_Umgangskodex.pdf?version=2&modificationDate=1516310958744&api=v2" target="_blank">
|
||||
<div class="epsrect" style="background-image:url(https://my.ecogood.world/epecg.png);">
|
||||
<div class="eptextfunc" style="color: #5a5a5a; text-transform:uppercase; text-align:left;padding-left:24px; font-size: 95%">Umgangs<br />kodex</div></div>
|
||||
</a>
|
||||
|
||||
<a href="https://wiki.ecogood.org/pages/viewpage.action?pageId=33949627&preview=/12359328/26348450/GWOE_Regelwerk1804.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image:url(https://my.ecogood.world/gwoe-regelwerk.jpg); background-size:100%;">
|
||||
</div></a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="epsquareplus"></div>
|
||||
|
||||
<div class="epsquareplus"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
BIN
public/epcloud.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
public/epcode.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
public/epecg.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/epforum.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
public/epmail.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
public/epmaillist.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
BIN
public/epprojekte.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
public/epsmartwe.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
public/epwiki.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
@@ -10,148 +10,159 @@
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
</head>
|
||||
<body style="background-image: url(https://my.ecogood.world/background.png);">
|
||||
<h1 style="text-align: center">Ecogood Portal</h1>
|
||||
|
||||
|
||||
<h1 style="text-align: center"></h1>
|
||||
<img style="display:block; width: 80%; max-width: 500px; margin:auto" src="https://my.ecogood.world/ecg-portal-logo.png" />
|
||||
|
||||
<div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="epframe">
|
||||
|
||||
<a class="item-box" href="https://wiki.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/confluence.svg"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Wiki (Confluence)</h2>
|
||||
|
||||
<a href="https://wiki.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolwiki">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<p>plate-forme de documentation</p>
|
||||
Wiki
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Confluence</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://jira.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/jira.svg"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Tickets (JIRA)</h2>
|
||||
|
||||
<a href="https://jira.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolprojekte">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<p>Système de billets</p>
|
||||
Système de billets
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">JIRA</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://mail.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/zimbra.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>E-Mail (Zimbra)</h2>
|
||||
|
||||
<a href="https://mail.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolmail">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<p>Administration du courrier</p>
|
||||
Administration du courrier
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Zimbra</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://list.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/sympa.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Mailinglisten (Sympa)</h2>
|
||||
|
||||
<a href="https://list.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolmaillist">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<p>Communication de groupe par e-mail</p>
|
||||
Communication de groupe par e-mail
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Sympa</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://datacloud.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/nextcloud.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Nextcloud</h2>
|
||||
|
||||
<a href="https://datacloud.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolcloud">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<p>Stockage de données dans le cloud</p>
|
||||
Données dans le cloud
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">Nextcloud</div>
|
||||
</div></a>
|
||||
|
||||
<a class="item-box" href="https://backoffice.ecogood.org" target="_blank">
|
||||
<div class="image-box">
|
||||
<img src="https://my.ecogood.world/cas.png"/>
|
||||
</div>
|
||||
<div class="text-box">
|
||||
<h2>Backoffice (SmartWE)</h2>
|
||||
|
||||
<a href="https://backoffice.ecogood.org" target="_blank">
|
||||
<div class="epsquare epcolsmartwe">
|
||||
<div class="eptextfunc">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<p>gestion des membres</p>
|
||||
gestion des membres
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="eptexttool">SmartWE</div>
|
||||
</div></a>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="epsquareplus"></div>
|
||||
</div>
|
||||
|
||||
<div id="epframe">
|
||||
<a href="https://www.ecogood.org/media/filer_public/73/da/73dab961-6125-4f69-bf7a-3c8613a90739/gwoe_arbeitsbuch_5_0_vollbilanz.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image: url(https://my.ecogood.world/gwoe-arbeitsbuch-5v.jpg);"></div>
|
||||
</a>
|
||||
|
||||
<a href="https://www.ecogood.org/media/filer_public/04/8e/048e113f-5802-494e-866b-c3f8c8a6a674/gwoe_arbeitsbuch_5_0_kompaktbilanz.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image: url(https://my.ecogood.world/gwoe-arbeitsbuch-5k.jpg);">
|
||||
</div></a>
|
||||
|
||||
<a href="https://wiki.ecogood.org/download/attachments/10649644/GW%C3%96_Umgangskodex.pdf?version=2&modificationDate=1516310958744&api=v2" target="_blank">
|
||||
<div class="epsrect" style="background-image:url(https://my.ecogood.world/epecg.png);">
|
||||
<div class="eptextfunc" style="color: #5a5a5a; text-transform:uppercase; text-align:left;padding-left:24px; font-size: 95%">Umgangs<br />kodex</div></div>
|
||||
</a>
|
||||
|
||||
<a href="https://wiki.ecogood.org/pages/viewpage.action?pageId=33949627&preview=/12359328/26348450/GWOE_Regelwerk1804.pdf" target="_blank">
|
||||
<div class="epsrect" style="background-image:url(https://my.ecogood.world/gwoe-regelwerk.jpg); background-size:100%;">
|
||||
</div></a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="epsquareplus"></div>
|
||||
|
||||
<div class="epsquareplus"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
BIN
public/gwoe-arbeitsbuch-5k.jpg
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
public/gwoe-arbeitsbuch-5v.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
public/gwoe-regelwerk.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
@@ -1,14 +0,0 @@
|
||||
RewriteEngine on
|
||||
|
||||
RewriteCond %{HTTP:Accept-Language} ^en [NC]
|
||||
RewriteRule ^$ https://%{HTTP_HOST}/en/ [L,R=300]
|
||||
|
||||
RewriteCond %{HTTP:Accept-Language} ^de [NC]
|
||||
RewriteRule ^$ https://%{HTTP_HOST}/de/ [L,R=300]
|
||||
|
||||
RewriteCond %{HTTP:Accept-Language} ^fr [NC]
|
||||
RewriteRule ^$ https://%{HTTP_HOST}/fr/ [L,R=300]
|
||||
|
||||
# Fallback for any other language to spanish
|
||||
RewriteCond %{HTTP_HOST} my.ecogood.world [NC]
|
||||
RewriteRule ^$ https://%{HTTP_HOST}/en2/ [L,R=300]
|
||||
@@ -1,89 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="0 0 128 128"
|
||||
version="1.1"
|
||||
id="svg35"
|
||||
sodipodi:docname="jira2.svg"
|
||||
width="128"
|
||||
height="128"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata39">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Jira Core-blue</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1129"
|
||||
id="namedview37"
|
||||
showgrid="false"
|
||||
inkscape:zoom="4.5440585"
|
||||
inkscape:cx="139.44195"
|
||||
inkscape:cy="59.706224"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="49"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg35" />
|
||||
<defs
|
||||
id="defs9">
|
||||
<style
|
||||
id="style2">.cls-1{fill:#253858;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:#2684ff;}</style>
|
||||
<linearGradient
|
||||
id="linear-gradient"
|
||||
x1="37.130001"
|
||||
y1="31.709999"
|
||||
x2="52.419998"
|
||||
y2="46.240002"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,62)">
|
||||
<stop
|
||||
offset="0.17"
|
||||
stop-color="#0052cc"
|
||||
id="stop4" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#2684ff"
|
||||
id="stop6" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<title
|
||||
id="title11">Jira Core-blue</title>
|
||||
<g
|
||||
id="g15"
|
||||
transform="matrix(1.937178,0,0,1.937178,0,-119.95879)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linear-gradient)"
|
||||
id="path29"
|
||||
d="M 33.43,106.48 A 21.52,21.52 0 0 0 54.95,128 v 0 -42.88 L 33.43,99.86 Z"
|
||||
class="cls-2" />
|
||||
<path
|
||||
style="fill:#2684ff"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path31"
|
||||
d="M 54.95,85.12 V 65.21 a 3.2,3.2 0 0 0 -5,-2.64 L 0,96.67 a 21.52,21.52 0 0 0 29.89,5.69 z"
|
||||
class="cls-3" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 14 KiB |
BIN
public/osi.png
|
Before Width: | Height: | Size: 165 KiB |
BIN
public/sympa.png
|
Before Width: | Height: | Size: 6.0 KiB |
|
Before Width: | Height: | Size: 29 KiB |
BIN
static/cas.png
|
Before Width: | Height: | Size: 4.6 KiB |
@@ -1,111 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="0 0 128 128"
|
||||
version="1.1"
|
||||
id="svg40"
|
||||
sodipodi:docname="confluence.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
width="128"
|
||||
height="128">
|
||||
<metadata
|
||||
id="metadata44">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Confluence-blue</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1129"
|
||||
id="namedview42"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.5361574"
|
||||
inkscape:cx="163.59546"
|
||||
inkscape:cy="65.825847"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="49"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg40"
|
||||
showborder="true"
|
||||
borderlayer="false"
|
||||
inkscape:showpageshadow="true"
|
||||
inkscape:pagecheckerboard="false" />
|
||||
<defs
|
||||
id="defs10">
|
||||
<style
|
||||
id="style2">.cls-1{fill:#253858;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:url(#linear-gradient-2);}</style>
|
||||
<linearGradient
|
||||
id="linear-gradient"
|
||||
x1="59.68"
|
||||
y1="67.650002"
|
||||
x2="20.35"
|
||||
y2="45.049999"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
offset="0.18"
|
||||
stop-color="#0052cc"
|
||||
id="stop4" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#2684ff"
|
||||
id="stop6" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linear-gradient-2"
|
||||
x1="279.76001"
|
||||
y1="-1616.34"
|
||||
x2="240.42"
|
||||
y2="-1638.95"
|
||||
gradientTransform="rotate(180,141.415,-776.27)"
|
||||
xlink:href="#linear-gradient" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linear-gradient"
|
||||
id="linearGradient3749"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="59.68"
|
||||
y1="67.650002"
|
||||
x2="20.35"
|
||||
y2="45.049999"
|
||||
gradientTransform="translate(0,64.169998)" />
|
||||
</defs>
|
||||
<title
|
||||
id="title12">Confluence-blue</title>
|
||||
<g
|
||||
id="g25"
|
||||
transform="matrix(2.0349222,0,0,2.0349222,0.3332851,-132.45786)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient3749)"
|
||||
id="path34"
|
||||
d="m 2.23,113.7 c -0.65,1.06 -1.38,2.29 -2,3.27 a 2,2 0 0 0 0.67,2.72 l 13,8 a 2,2 0 0 0 2.77,-0.68 c 0.52,-0.87 1.19,-2 1.92,-3.21 5.15,-8.5 10.33,-7.46 19.67,-3 l 12.89,6.13 a 2,2 0 0 0 2.69,-1 l 6.19,-14 a 2,2 0 0 0 -1,-2.62 c -2.72,-1.28 -8.13,-3.83 -13,-6.18 C 28.51,94.619998 13.62,95.169998 2.23,113.7 Z"
|
||||
class="cls-2" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linear-gradient-2)"
|
||||
id="path36"
|
||||
d="m 60.52,81.929998 c 0.65,-1.06 1.38,-2.29 2,-3.27 a 2,2 0 0 0 -0.67,-2.72 l -13,-8 a 2,2 0 0 0 -2.85,0.66 c -0.52,0.87 -1.19,2 -1.92,3.21 -5.15,8.5 -10.33,7.46 -19.67,3 l -12.85,-6.1 a 2,2 0 0 0 -2.69,1 l -6.19,14 a 2,2 0 0 0 1,2.62 c 2.72,1.28 8.13,3.83 13,6.18 17.56,8.500002 32.45,7.930002 43.84,-10.58 z"
|
||||
class="cls-3" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.7 KiB |
BIN
static/ecg-portal-logo.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
@@ -1,6 +1,12 @@
|
||||
body {
|
||||
color: #333;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 1rem;
|
||||
|
||||
margin:0;
|
||||
padding:0;
|
||||
text-align:center;
|
||||
display:block;
|
||||
}
|
||||
|
||||
a {
|
||||
@@ -8,8 +14,9 @@ a {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/*
|
||||
.item-box {
|
||||
border-radius: 15px;
|
||||
border-radius: 15px;
|
||||
position: relative;
|
||||
float: left;
|
||||
|
||||
@@ -40,3 +47,137 @@ h2 {
|
||||
font-size: 26px;
|
||||
font-weight: 500;
|
||||
}
|
||||
*/
|
||||
|
||||
#epframe {
|
||||
margin: auto;
|
||||
max-width: 900px;
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.epsquare,
|
||||
.epsquareplus {
|
||||
width: 23%;
|
||||
padding-bottom: 23%;
|
||||
position: relative;
|
||||
margin: 0.5%;
|
||||
display: inline-block;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.epsquareplus {
|
||||
padding-bottom: 0
|
||||
}
|
||||
|
||||
.epsrect {
|
||||
width: 23%;
|
||||
padding-bottom: 32.2%;
|
||||
background-color: none;
|
||||
position: relative;
|
||||
margin: 0.5%;
|
||||
display: inline-block;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
|
||||
.eptextfunc {
|
||||
width: 100%;
|
||||
font-weight: bold;
|
||||
position: absolute;
|
||||
color: white;
|
||||
bottom: 20%;
|
||||
font-size: 1.35rem
|
||||
}
|
||||
|
||||
.eptexttool {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
color: white;
|
||||
bottom: 8%;
|
||||
}
|
||||
|
||||
.epcolwiki {
|
||||
background-color: #009da5;
|
||||
background-image: url(epwiki.png);
|
||||
}
|
||||
|
||||
.epcolprojekte {
|
||||
background-color: #889e33;
|
||||
background-image: url(epprojekte.png);
|
||||
}
|
||||
|
||||
.epcolmail {
|
||||
background-color: #0099CC;
|
||||
background-image: url(epmail.png);
|
||||
}
|
||||
|
||||
.epcolmaillist {
|
||||
background-color: #99CC00;
|
||||
background-image: url(epmaillist.png);
|
||||
}
|
||||
|
||||
.epcolcloud {
|
||||
background-color: #3B6CA6;
|
||||
background-image: url(epcloud.png);
|
||||
}
|
||||
|
||||
.epcolsmartwe {
|
||||
background-color: #E05656;
|
||||
background-image: url(epsmartwe.png);
|
||||
}
|
||||
|
||||
.epcolcode {
|
||||
background-color: #40B075;
|
||||
background-image: url(epcode.png);
|
||||
}
|
||||
|
||||
.epcolforum {
|
||||
background-color: #FF9900;
|
||||
background-image: url(epforum.png);
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 900px) {
|
||||
.epsquare {
|
||||
width: 30%;
|
||||
padding-bottom: 30%;
|
||||
}
|
||||
.epsrect {
|
||||
width: 30%;
|
||||
padding-bottom: 42%;
|
||||
}
|
||||
.epsquareplus {
|
||||
width: 30%;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 640px) {
|
||||
.epsquare {
|
||||
width: 40%;
|
||||
padding-bottom: 40%;
|
||||
}
|
||||
.epsrect {
|
||||
width: 40%;
|
||||
padding-bottom: 56%;
|
||||
}
|
||||
.epsquareplus {
|
||||
width: 40%;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 450px) {
|
||||
.epsquare {
|
||||
width: 50%;
|
||||
padding-bottom: 50%;
|
||||
margin: 1.5%;
|
||||
}
|
||||
.epsrect {
|
||||
width: 50%;
|
||||
padding-bottom: 70%;
|
||||
margin: 1.5%;
|
||||
}
|
||||
.epsquareplus {
|
||||
width: 50%;
|
||||
margin: 1.5%;
|
||||
}
|
||||
}
|
||||
|
||||
BIN
static/epcloud.png
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
static/epcode.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
static/epecg.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
static/epforum.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
BIN
static/epmail.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
static/epmaillist.png
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
BIN
static/epprojekte.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
static/epsmartwe.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
static/epwiki.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
static/gwoe-arbeitsbuch-5k.jpg
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
static/gwoe-arbeitsbuch-5v.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
static/gwoe-regelwerk.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
@@ -1,89 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="0 0 128 128"
|
||||
version="1.1"
|
||||
id="svg35"
|
||||
sodipodi:docname="jira2.svg"
|
||||
width="128"
|
||||
height="128"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata39">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Jira Core-blue</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1129"
|
||||
id="namedview37"
|
||||
showgrid="false"
|
||||
inkscape:zoom="4.5440585"
|
||||
inkscape:cx="139.44195"
|
||||
inkscape:cy="59.706224"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="49"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg35" />
|
||||
<defs
|
||||
id="defs9">
|
||||
<style
|
||||
id="style2">.cls-1{fill:#253858;}.cls-2{fill:url(#linear-gradient);}.cls-3{fill:#2684ff;}</style>
|
||||
<linearGradient
|
||||
id="linear-gradient"
|
||||
x1="37.130001"
|
||||
y1="31.709999"
|
||||
x2="52.419998"
|
||||
y2="46.240002"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(0,62)">
|
||||
<stop
|
||||
offset="0.17"
|
||||
stop-color="#0052cc"
|
||||
id="stop4" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#2684ff"
|
||||
id="stop6" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<title
|
||||
id="title11">Jira Core-blue</title>
|
||||
<g
|
||||
id="g15"
|
||||
transform="matrix(1.937178,0,0,1.937178,0,-119.95879)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linear-gradient)"
|
||||
id="path29"
|
||||
d="M 33.43,106.48 A 21.52,21.52 0 0 0 54.95,128 v 0 -42.88 L 33.43,99.86 Z"
|
||||
class="cls-2" />
|
||||
<path
|
||||
style="fill:#2684ff"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path31"
|
||||
d="M 54.95,85.12 V 65.21 a 3.2,3.2 0 0 0 -5,-2.64 L 0,96.67 a 21.52,21.52 0 0 0 29.89,5.69 z"
|
||||
class="cls-3" />
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 14 KiB |
BIN
static/osi.png
|
Before Width: | Height: | Size: 165 KiB |
BIN
static/sympa.png
|
Before Width: | Height: | Size: 6.0 KiB |
|
Before Width: | Height: | Size: 29 KiB |