Delete everything
1
.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
.idea/
|
206
app.css
|
@ -1,206 +0,0 @@
|
|||
html {
|
||||
box-sizing: border-box;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
*, *:before, *:after {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
html, body, .wrapper {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
color: #fff;
|
||||
background: url(assets/wallpaper.jpg) no-repeat center / cover fixed rgb(32, 35, 36);
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
|
||||
Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
align-items: center;
|
||||
background: -moz-radial-gradient(center center, circle cover, transparent, #000);
|
||||
background: -ms-radial-gradient(center center, circle cover, transparent, #000);
|
||||
background: -webkit-radial-gradient(center center, circle cover, transparent, #000);
|
||||
background: radial-gradient(center center, circle cover, transparent, #000);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
min-height: 100%;
|
||||
padding: 30px 0;
|
||||
}
|
||||
|
||||
.header__title {
|
||||
font-size: calc(50px + 16 * (100vw - 320px) / (960 - 320));
|
||||
font-weight: normal;
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
text-shadow: #000 5px 5px 5px;
|
||||
}
|
||||
|
||||
.header__link {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.header__description {
|
||||
text-shadow: #000 1px 1px 5px;
|
||||
line-height: 1.7;
|
||||
margin-bottom: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.main {
|
||||
width: 800px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
.main {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.section__header {
|
||||
text-shadow: #000 1px 1px 5px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.play-button {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.play-image {
|
||||
max-width: 300px;
|
||||
}
|
||||
|
||||
.button-container {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.button {
|
||||
max-width: 100%;
|
||||
width: 300px;
|
||||
margin: 10px 0;
|
||||
background: rgb(112, 50, 50);
|
||||
border-radius: 3px;
|
||||
color: #eee;
|
||||
display: block;
|
||||
font-size: 20px;
|
||||
padding: 15px 25px;
|
||||
text-align: left;
|
||||
text-decoration: none;
|
||||
transition: background 0.3s;
|
||||
}
|
||||
|
||||
.button__info {
|
||||
padding: 0;
|
||||
margin: 5px 0 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.button:hover, .button:focus, .button:active {
|
||||
background: rgb(90, 45, 45);
|
||||
}
|
||||
|
||||
.button--dev {
|
||||
background: #333;
|
||||
}
|
||||
|
||||
.button--dev:hover,
|
||||
.button--dev:focus,
|
||||
.button--dev:active {
|
||||
background: #222;
|
||||
}
|
||||
|
||||
.icon {
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
|
||||
.icon:hover, .icon:focus, .icon:active {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.links {
|
||||
font-size: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.links__item {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.links__item + .links__item {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.links__item {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.links__item--discord img {
|
||||
max-width: 38px;
|
||||
}
|
||||
|
||||
.button span {
|
||||
font-size: small;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.button span[class$="date"] {
|
||||
color: transparent;
|
||||
transition: 0.3s color;
|
||||
}
|
||||
|
||||
.button:hover span[class$="date"] {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.button-more__link {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.button-more__link:hover,
|
||||
.button-more__link:focus,
|
||||
.button-more__link:active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer__nav {
|
||||
margin-top: 30px;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.footer__item {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.footer__link {
|
||||
color: #eeeeee;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer__link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
90
app.js
|
@ -1,90 +0,0 @@
|
|||
var disableClick = function(e) {e.preventDefault()};
|
||||
|
||||
var addButtonInfo = function(url, prefix, cb) {
|
||||
var buttonElement = document.querySelector("." + prefix + "-button");
|
||||
if (null === buttonElement) {
|
||||
return;
|
||||
}
|
||||
|
||||
buttonElement.addEventListener("click", disableClick);
|
||||
var versionElement = document.querySelector("." + prefix + "-version");
|
||||
versionElement.innerHTML = "Ładowanie…";
|
||||
var dateElement = document.querySelector("." + prefix + "-date");
|
||||
|
||||
var res = new XMLHttpRequest();
|
||||
res.open("GET", url, true);
|
||||
res.onloadend = function () {
|
||||
if(res.status === 200) {
|
||||
cb(res, buttonElement, versionElement, dateElement);
|
||||
} else {
|
||||
versionElement.innerHTML = "wersja nieznana";
|
||||
}
|
||||
buttonElement.removeEventListener("click", disableClick);
|
||||
};
|
||||
res.send(null);
|
||||
};
|
||||
|
||||
if (null === document.querySelector(".button-container--list")) {
|
||||
addButtonInfo("https://api.github.com/repos/wulkanowy/wulkanowy/releases/latest", "beta",
|
||||
function(res, button, version, date) {
|
||||
var json = JSON.parse(res.responseText);
|
||||
button.href = json.assets[0].browser_download_url;
|
||||
version.innerHTML = "v" + json.name;
|
||||
date.innerHTML = new Date(json.published_at).toLocaleString("pl-PL");
|
||||
}
|
||||
);
|
||||
|
||||
addButtonInfo("https://bitrise-redirector.herokuapp.com/v0.1/apps/daeff1893f3c8128/builds/master/artifacts/0/info", "dev",
|
||||
function(res, button, version, date) {
|
||||
if (null !== document.querySelector(".button-container--list")) return;
|
||||
var json = JSON.parse(res.responseText);
|
||||
version.innerHTML = "Build " + json.build_number;
|
||||
date.innerHTML = new Date(json.finished_at).toLocaleString("pl-PL");
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
(function (d) {
|
||||
var list = d.querySelector(".button-container--list");
|
||||
var base = d.querySelector(".button-container--list .button");
|
||||
if (null === base) return;
|
||||
|
||||
var baseCopy = base.cloneNode(true);
|
||||
base.style.display = "none";
|
||||
|
||||
var res = new XMLHttpRequest();
|
||||
res.open("GET", "https://api.github.com/repos/wulkanowy/wulkanowy/pulls", true);
|
||||
res.onloadend = function () {
|
||||
if(res.status === 200) {
|
||||
JSON.parse(res.responseText).forEach(function (item) {
|
||||
var url = "https://bitrise-redirector.herokuapp.com/v0.1/apps/daeff1893f3c8128/builds/" + item.head.ref + "/artifacts/0";
|
||||
|
||||
var branch = baseCopy.cloneNode(true);
|
||||
branch.href = url;
|
||||
branch.innerText = item.head.ref;
|
||||
|
||||
var button_info = d.createElement("p");
|
||||
button_info.setAttribute("class", "button__info");
|
||||
|
||||
var button_version = d.createElement("span");
|
||||
button_version.setAttribute("class", "dev-version");
|
||||
|
||||
var button_date = d.createElement("span");
|
||||
button_date.setAttribute("class", "dev-date");
|
||||
|
||||
button_info.appendChild(button_version);
|
||||
button_info.appendChild(button_date);
|
||||
|
||||
addButtonInfo(url + "/info", "dev", function(res) {
|
||||
var json = JSON.parse(res.responseText);
|
||||
button_version.innerHTML = "Build " + json.build_number;
|
||||
button_date.innerHTML = new Date(json.finished_at).toLocaleString("pl-PL");
|
||||
});
|
||||
branch.appendChild(button_info);
|
||||
list.appendChild(branch);
|
||||
})
|
||||
}
|
||||
};
|
||||
res.send(null);
|
||||
|
||||
})(document);
|
|
@ -1,69 +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"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 175 200"
|
||||
version="1.1"
|
||||
sodipodi:docname="discord.svg"
|
||||
width="175"
|
||||
height="200"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata13">
|
||||
<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></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs11" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="955"
|
||||
id="namedview9"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.9666667"
|
||||
inkscape:cx="152.20438"
|
||||
inkscape:cy="25.380053"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<style
|
||||
id="style2">.st0{fill:#FFFFFF;}</style>
|
||||
<path
|
||||
class="st0"
|
||||
d="m 69.4,83.9 c -5.7,0 -10.2,5 -10.2,11.1 0,6.1 4.6,11.1 10.2,11.1 5.7,0 10.2,-5 10.2,-11.1 0.1,-6.1 -4.5,-11.1 -10.2,-11.1 z m 36.5,0 c -5.7,0 -10.2,5 -10.2,11.1 0,6.1 4.6,11.1 10.2,11.1 5.7,0 10.2,-5 10.2,-11.1 0,-6.1 -4.5,-11.1 -10.2,-11.1 z"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff" />
|
||||
<path
|
||||
class="st0"
|
||||
d="M 154.5,0 H 20.5 C 9.2,0 0,9.2 0,20.6 v 135.2 c 0,11.4 9.2,20.6 20.5,20.6 h 113.4 l -5.3,-18.5 12.8,11.9 12.1,11.2 21.5,19 V 20.6 C 175,9.2 165.8,0 154.5,0 Z m -38.6,130.6 c 0,0 -3.6,-4.3 -6.6,-8.1 13.1,-3.7 18.1,-11.9 18.1,-11.9 -4.1,2.7 -8,4.6 -11.5,5.9 -5,2.1 -9.8,3.5 -14.5,4.3 -9.6,1.8 -18.4,1.3 -25.9,-0.1 -5.7,-1.1 -10.6,-2.7 -14.7,-4.3 -2.3,-0.9 -4.8,-2 -7.3,-3.4 -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 -0.2,-0.1 -0.3,-0.2 -0.4,-0.3 -1.8,-1 -2.8,-1.7 -2.8,-1.7 0,0 4.8,8 17.5,11.8 -3,3.8 -6.7,8.3 -6.7,8.3 C 38.1,129.9 29.7,115.4 29.7,115.4 29.7,83.2 44.1,57.1 44.1,57.1 58.5,46.3 72.2,46.6 72.2,46.6 l 1,1.2 c -18,5.2 -26.3,13.1 -26.3,13.1 0,0 2.2,-1.2 5.9,-2.9 10.7,-4.7 19.2,-6 22.7,-6.3 0.6,-0.1 1.1,-0.2 1.7,-0.2 6.1,-0.8 13,-1 20.2,-0.2 9.5,1.1 19.7,3.9 30.1,9.6 0,0 -7.9,-7.5 -24.9,-12.7 l 1.4,-1.6 c 0,0 13.7,-0.3 28.1,10.5 0,0 14.4,26.1 14.4,58.3 0,0 -8.5,14.5 -30.6,15.2 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff" />
|
||||
</svg>
|
Before Width: | Height: | Size: 2.9 KiB |
|
@ -1,66 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<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"
|
||||
width="11.493064mm"
|
||||
height="11.209469mm"
|
||||
viewBox="0 0 11.493064 11.209469"
|
||||
version="1.1"
|
||||
id="svg400"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="github.svg">
|
||||
<defs
|
||||
id="defs394" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.2"
|
||||
inkscape:cx="6.8325799"
|
||||
inkscape:cy="15.756873"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="955"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata397">
|
||||
<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></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-80.431998,-106.18693)">
|
||||
<path
|
||||
d="m 86.178042,106.18693 c -3.173236,0 -5.746044,2.57281 -5.746044,5.74675 0,2.53894 1.646414,4.69265 3.929944,5.45289 0.287514,0.0526 0.392289,-0.12488 0.392289,-0.27728 0,-0.13618 -0.0049,-0.49777 -0.0078,-0.9772 -1.598436,0.34713 -1.935692,-0.77047 -1.935692,-0.77047 -0.261408,-0.66392 -0.638174,-0.84066 -0.638174,-0.84066 -0.521759,-0.35631 0.03951,-0.34925 0.03951,-0.34925 0.576791,0.0406 0.88018,0.59231 0.88018,0.59231 0.512586,0.87806 1.345142,0.62442 1.67252,0.47731 0.05221,-0.37112 0.200377,-0.62442 0.364772,-0.768 -1.275997,-0.14499 -2.617611,-0.63817 -2.617611,-2.84021 0,-0.62724 0.224014,-1.14018 0.591608,-1.54199 -0.05927,-0.14535 -0.256469,-0.72955 0.05609,-1.52083 0,0 0.4826,-0.15452 1.580444,0.58914 0.458258,-0.12771 0.950031,-0.19121 1.438628,-0.19332 0.487891,0.002 0.979664,0.0656 1.438628,0.19332 1.097138,-0.74366 1.57868,-0.58914 1.57868,-0.58914 0.313619,0.79128 0.116417,1.37548 0.05715,1.52083 0.3683,0.40181 0.590903,0.91475 0.590903,1.54199 0,2.20768 -1.343731,2.69345 -2.623961,2.83562 0.206375,0.17745 0.390172,0.52811 0.390172,1.06433 0,0.768 -0.0071,1.38783 -0.0071,1.57622 0,0.15381 0.103364,0.33267 0.395111,0.27657 2.28177,-0.76164 3.926773,-2.91394 3.926773,-5.45218 0,-3.17394 -2.573161,-5.74675 -5.747103,-5.74675"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775"
|
||||
id="path198"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 9.8 KiB |
|
@ -1,50 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Svg Vector Icons : http://www.onlinewebfonts.com/icon -->
|
||||
|
||||
<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"
|
||||
version="1.1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 1000 1000"
|
||||
enable-background="new 0 0 1000 1000"
|
||||
xml:space="preserve"
|
||||
id="svg8"
|
||||
sodipodi:docname="trello.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"><defs
|
||||
id="defs12" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="955"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.236"
|
||||
inkscape:cx="500"
|
||||
inkscape:cy="500"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8" />
|
||||
<metadata
|
||||
id="metadata2"> Svg Vector Icons : http://www.onlinewebfonts.com/icon <rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata>
|
||||
<g
|
||||
id="g6"><path
|
||||
d="M459.1,785.8V132.5c0-6-1.9-10.8-5.8-14.7c-3.8-3.8-8.7-5.8-14.7-5.8H132.5c-6,0-10.9,1.9-14.7,5.8c-3.8,3.8-5.8,8.7-5.8,14.7v653.3c0,6,1.9,10.8,5.8,14.7c3.8,3.8,8.7,5.8,14.7,5.8h306.2c6,0,10.9-1.9,14.7-5.8C457.2,796.7,459.1,791.8,459.1,785.8z M887.9,540.8V132.5c0-6-1.9-10.8-5.8-14.7c-3.8-3.8-8.7-5.8-14.7-5.8H561.2c-6,0-10.9,1.9-14.7,5.8c-3.8,3.8-5.8,8.7-5.8,14.7v408.3c0,6,1.9,10.8,5.8,14.7c3.8,3.8,8.7,5.8,14.7,5.8h306.2c6,0,10.8-1.9,14.7-5.8C886,551.7,887.9,546.8,887.9,540.8z M990,50.8v898.3c0,11.1-4,20.6-12.1,28.7c-8.1,8.1-17.7,12.1-28.7,12.1H50.8c-11.1,0-20.6-4-28.7-12.1C14,969.8,10,960.2,10,949.2V50.8c0-11.1,4-20.6,12.1-28.7C30.2,14,39.8,10,50.8,10h898.3c11.1,0,20.6,4,28.7,12.1C986,30.2,990,39.8,990,50.8L990,50.8z"
|
||||
id="path4"
|
||||
style="fill:#ffffff" /></g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 203 KiB |
74
dev.html
|
@ -1,74 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="favicon-dev.ico">
|
||||
<title>Wersje DEV - Wulkanowy</title>
|
||||
<link rel="stylesheet" href="app.css">
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-99646499-3"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
||||
function gtag() {
|
||||
dataLayer.push(arguments);
|
||||
}
|
||||
|
||||
gtag("js", new Date());
|
||||
gtag("config", "UA-99646499-3");
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<section class="wrapper">
|
||||
<div class="container">
|
||||
<header class="header">
|
||||
<h1 class="header__title">
|
||||
<a class="header__link" href="https://wulkanowy.github.io/">Wulkanowy</a>
|
||||
</h1>
|
||||
<p class="header__description">Nieoficjalna aplikacja mobilna <br>ucznia i rodzica <br>dla dziennika VULCAN UONET+</p>
|
||||
</header>
|
||||
<main class="main">
|
||||
<section class="section">
|
||||
<div class="button-container button-container--list">
|
||||
<a class="button button--dev dev-button"
|
||||
title="Pobierz wersję DEV"
|
||||
href="https://bitrise-redirector.herokuapp.com/v0.1/apps/daeff1893f3c8128/builds/master/artifacts/0">
|
||||
master
|
||||
<p class="button__info">
|
||||
<span class="dev-version">Build 0000</span>
|
||||
<span class="dev-date"></span>
|
||||
</p>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<footer id="footer" class="footer">
|
||||
<ul class="footer__links links">
|
||||
<li class="links__item">
|
||||
<a title="Zobacz repozytorium na Githubie" href="https://github.com/wulkanowy/wulkanowy">
|
||||
<img src="assets/github.svg" alt="Zobacz repozytorium na Githubie">
|
||||
</a>
|
||||
</li>
|
||||
<li class="links__item links__item--discord">
|
||||
<a title="Dołącz do naszego serwera Discord" href="https://discord.gg/vccAQBr">
|
||||
<img src="assets/discord.svg" alt="Dołącz do naszego serwera Discord">
|
||||
</a>
|
||||
</li>
|
||||
<li class="links__item links__item--trello">
|
||||
<a title="Zobacz nasze plany na tablicy Trello" href="https://trello.com/b/A97NUM1s/wulkanowy">
|
||||
<img src="assets/trello.svg" alt="Zobacz nasze plany na tablicy Trello">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="footer__nav">
|
||||
<li class="footer__item">
|
||||
<a class="footer__link" href="https://github.com/wulkanowy">Wszystkie projekty</a>
|
||||
</li>
|
||||
</ul>
|
||||
</footer>
|
||||
</div>
|
||||
</section>
|
||||
<script src="app.js"></script>
|
||||
</body>
|
||||
</html>
|
BIN
favicon-dev.ico
Before Width: | Height: | Size: 17 KiB |
BIN
favicon.ico
Before Width: | Height: | Size: 7.7 KiB |
93
index.html
|
@ -1,93 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico?v=3">
|
||||
<title>Nieoficjalna aplikacja mobilna dla dziennika VULCAN UONET+ - Wulkanowy</title>
|
||||
<link rel="stylesheet" href="app.css">
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-99646499-3"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
||||
function gtag() {
|
||||
dataLayer.push(arguments);
|
||||
}
|
||||
|
||||
gtag("js", new Date());
|
||||
gtag("config", "UA-99646499-3");
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<section class="wrapper">
|
||||
<div class="container">
|
||||
<header class="header">
|
||||
<h1 class="header__title">
|
||||
<a class="header__link" href="https://wulkanowy.github.io/">Wulkanowy</a>
|
||||
</h1>
|
||||
<p class="header__description">Nieoficjalna aplikacja mobilna <br>ucznia i rodzica <br>dla dziennika VULCAN UONET+</p>
|
||||
</header>
|
||||
<main class="main">
|
||||
<a class="play-button" href="https://play.google.com/store/apps/details?id=io.github.wulkanowy&utm_source=homepage">
|
||||
<img class="play-image" alt="pobierz z Google Play" src="assets/google-play-badge.png">
|
||||
</a>
|
||||
<section class="section">
|
||||
<h3 class="section__header">Więcej opcji</h3>
|
||||
<div class="button-container">
|
||||
<a class="button button--beta beta-button" title="Pobierz wersję beta" href="https://github.com/wulkanowy/wulkanowy/releases">
|
||||
Pobierz wersję beta
|
||||
<p class="button__info">
|
||||
<span class="beta-version">v0.0.0</span>
|
||||
<span class="beta-date"></span>
|
||||
</p>
|
||||
</a>
|
||||
<p class="button-more">
|
||||
<a class="button-more__link" href="https://github.com/wulkanowy/wulkanowy/releases">Więcej wersji</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="button-container">
|
||||
<a class="button button--dev dev-button"
|
||||
title="Pobierz wersję DEV"
|
||||
href="https://bitrise-redirector.herokuapp.com/v0.1/apps/daeff1893f3c8128/builds/master/artifacts/0">
|
||||
Pobierz wersję DEV
|
||||
<p class="button__info">
|
||||
<span class="dev-version">Build 0000</span>
|
||||
<span class="dev-date"></span>
|
||||
</p>
|
||||
</a>
|
||||
<p class="button-more">
|
||||
<a href="dev.html" class="button-more__link">Więcej wersji</a>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<footer id="footer" class="footer">
|
||||
<ul class="footer__links links">
|
||||
<li class="links__item">
|
||||
<a title="Zobacz repozytorium na Githubie" href="https://github.com/wulkanowy/wulkanowy">
|
||||
<img src="assets/github.svg" alt="Zobacz repozytorium na Githubie">
|
||||
</a>
|
||||
</li>
|
||||
<li class="links__item links__item--discord">
|
||||
<a title="Dołącz do naszego serwera Discord" href="https://discord.gg/vccAQBr">
|
||||
<img src="assets/discord.svg" alt="Dołącz do naszego serwera Discord">
|
||||
</a>
|
||||
</li>
|
||||
<li class="links__item links__item--trello">
|
||||
<a title="Zobacz nasze plany na tablicy Trello" href="https://trello.com/b/A97NUM1s/wulkanowy">
|
||||
<img src="assets/trello.svg" alt="Zobacz nasze plany na tablicy Trello">
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="footer__nav">
|
||||
<li class="footer__item">
|
||||
<a class="footer__link" href="https://github.com/wulkanowy">Wszystkie projekty</a>
|
||||
</li>
|
||||
</ul>
|
||||
</footer>
|
||||
</div>
|
||||
</section>
|
||||
<script src="app.js"></script>
|
||||
</body>
|
||||
</html>
|