-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5738fe1
commit 1217079
Showing
44 changed files
with
2,302 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,228 @@ | ||
<!doctype html> | ||
<html lang="en" data-bs-theme="dark"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>ArmorSculpt | 3D Model Creation</title> | ||
<meta name="description" content="ArmorSculpt is a software designed for authoring 3D model creation."> | ||
<meta property="og:type" content="website"> | ||
<meta property="og:url" content="https://armorsculpt.org/"> | ||
<meta property="og:title" content="ArmorSculpt | 3D Model Creation"> | ||
<meta property="og:description" content="ArmorSculpt is a software designed for authoring 3D model creation."> | ||
<meta property="og:image" content="https://armorsculpt.org/img/x.jpg"> | ||
<meta property="twitter:card" content="summary_large_image"> | ||
<meta property="twitter:url" content="https://armorsculpt.org/"> | ||
<meta property="twitter:title" content="ArmorSculpt | 3D Model Creation"> | ||
<meta property="twitter:description" content="ArmorSculpt is a software designed for authoring 3D model creation."> | ||
<meta property="twitter:image" content="https://armorsculpt.org/img/x.jpg"> | ||
<link href="css/bootstrap.min.css" rel="stylesheet"> | ||
<style> | ||
[data-bs-theme=dark] { | ||
--bs-body-bg: #1e2226; | ||
--bs-body-bg-rgb: 30,34,38; | ||
--bs-secondary-bg: #272c31; | ||
--bs-secondary-bg-rgb: 39,44,49; | ||
--bs-tertiary-bg: #272c31; | ||
--bs-tertiary-bg-rgb: 39,44,49; | ||
} | ||
|
||
.bg-dark { | ||
background-color: #1e2226 !important; | ||
/* background-color: #171b1f !important;*/ | ||
} | ||
|
||
.btn-primary { | ||
background-color: #cc334d !important; | ||
border-color: #cc334d !important; | ||
} | ||
|
||
header { | ||
position: relative; | ||
background-color: black; | ||
overflow: hidden; | ||
height: 58vh; | ||
display: block; | ||
} | ||
|
||
/* header video {*/ | ||
header img { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
min-width: 100%; | ||
min-height: 100%; | ||
width: auto; | ||
height: auto; | ||
transform: translateX(-50%) translateY(-50%); | ||
object-fit: cover; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top"> | ||
<div class="container-fluid"> | ||
|
||
<a href="https://armorsculpt.org/"><img src="img/Logo.png" style="width: 50px;" class="rounded" /></a> | ||
|
||
<ul class="navbar-nav"> | ||
<li class="nav-item dropdown"> | ||
<a class="nav-link dropdown-toggle fw-semibold" href="#" data-bs-toggle="dropdown" aria-expanded="false">ARMORSCULPT</a> | ||
<ul class="dropdown-menu rounded-3 shadow"> | ||
<li><a class="dropdown-item rounded-2" href="https://armorpaint.org/"><img src="img/paint.png" style="width: 25px;" class="rounded" /> ARMORPAINT</a></li> | ||
<li><a class="dropdown-item rounded-2" href="https://armorlab.org/"><img src="img/lab.png" style="width: 25px;" class="rounded" /> ARMORLAB</a></li> | ||
<li><a class="dropdown-item rounded-2" href="https://armorforge.org/"><img src="img/forge.png" style="width: 25px;" class="rounded" /> ARMORFORGE</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
|
||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#mynavbar" aria-expanded="false" aria-label="Toggle"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
|
||
<div class="collapse navbar-collapse justify-content-end" id="mynavbar"> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="https://armorsculpt.org">HOME</a> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
</div> | ||
</nav> | ||
|
||
<main> | ||
<header> | ||
<!-- <video playsinline='' autoplay='' muted='' loop=''> | ||
<source src="img/cover.mp4" type="video/mp4" /> | ||
</video> --> | ||
<img src="img/FeaturedCover.jpg" /> | ||
<div class="position-relative p-5 mx-auto mx-md-5 my-5"> | ||
<div class="p-5 mx-auto mx-md-5 my-5 bg-body-secondary rounded-3" style="--bs-bg-opacity: 0.6; width: 420px;"> | ||
<h1 class="display-5 pb-3">Sculpt Your<br>3D Models<br>in <span class="text-body-emphasis">ArmorSculpt</span>.</h1> | ||
<!-- <a href="https://armorsculpt.org/download"><button type="button" class="btn btn-primary px-4 me-sm-3">v<span id="spanversionhead">...</span></button></a> --> | ||
</div> | ||
</div> | ||
</header> | ||
<script type="text/javascript"> | ||
var req = new XMLHttpRequest(); | ||
req.onreadystatechange = function() { | ||
if (req.readyState == XMLHttpRequest.DONE) { | ||
if (req.status == 200) { | ||
var data = JSON.parse(req.responseText); | ||
spanversionhead.innerHTML = "" + data.version_name + ""; | ||
} | ||
} | ||
}; | ||
req.open("GET", "https://server.armorpaint.org/armorsculpt.html", true); | ||
req.send(); | ||
</script> | ||
|
||
<!-------------------------------------> | ||
|
||
<div class="col-md-6 p-lg-5 mx-auto my-5 bg-body-tertiary rounded pt-3"> | ||
<h1 class="display-3 fw-bold">Community</h1> | ||
<h3 class="fw-normal text-muted mb-3">Check out what's happening.</h3> | ||
</div> | ||
|
||
<div class="container col-md-6 p-lg-5 mx-auto my-5 bg-body-tertiary rounded pt-3"> | ||
<div class="row"> | ||
|
||
<div class="d-inline-flex justify-content-center pb-5 pb-xl-0 col-xl-2"> | ||
<a target="_blank" href="https://x.com/armory3d"> | ||
<div class="mb-3"> | ||
<img style="width: 64px;" class="d-block mx-auto rounded" src="img/icon_x.jpg" /> | ||
</div> | ||
<h5>X</h5> | ||
</a> | ||
</div> | ||
|
||
<div class="d-inline-flex justify-content-center pb-5 pb-xl-0 col-xl-2"> | ||
<a target="_blank" href="https://www.youtube.com/c/armory3d"> | ||
<div class="mb-3"> | ||
<img style="width: 64px;" class="d-block mx-auto rounded" src="img/icon_yt.png" /> | ||
</div> | ||
<h5>YouTube</h5> | ||
</a> | ||
</div> | ||
|
||
<div class="d-inline-flex justify-content-center pb-5 pb-xl-0 col-xl-2"> | ||
<a target="_blank" href="https://www.artstation.com/search?sort_by=date&query=armorpaint"> | ||
<div class="mb-3"> | ||
<img style="width: 64px;" class="d-block mx-auto rounded" src="img/icon_artstat.png" /> | ||
</div> | ||
<h5>ArtStation</h5> | ||
</a> | ||
</div> | ||
|
||
<div class="d-inline-flex justify-content-center pb-5 pb-xl-0 col-xl-2"> | ||
<a target="_blank" href="https://github.com/armory3d/armortools"> | ||
<div class="mb-3"> | ||
<img style="width: 64px;" class="d-block mx-auto rounded" src="img/icon_gh.png" /> | ||
</div> | ||
<h5>GitHub</h5> | ||
</a> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
<h5 class="fw-normal text-muted text-center mb-5"> | ||
<script language="JavaScript"> | ||
var user_name = "lubos"; | ||
var host_name = "armory3d.org"; | ||
document.write("Get in touch via <a href='" + "mail" + "to:" + user_name + "@" + host_name + "'>email</a>."); | ||
</script> | ||
</h5> | ||
|
||
<div class="overflow-hidden" style="max-height: 40vh;"> | ||
<div class="container"> | ||
<img src="img/7.jpg" class="img-fluid d-block rounded-3 mx-auto" width="700" height="500" loading="lazy"> | ||
</div> | ||
</div> | ||
|
||
<!-------------------------------------> | ||
|
||
<footer class="container py-5"> | ||
<div class="row"> | ||
<div class="col-12 col-md pb-4"> | ||
<a href="https://armory3d.org/"><img class='col-3 col-md-6 img-fluid rounded' src="img/armory.png"/></a> | ||
</div> | ||
<div class="col-6 col-md"> | ||
<h5>Projects</h5> | ||
<ul class="list-unstyled text-small"> | ||
<li><a class="link-secondary text-decoration-none" href="https://armorpaint.org/">ArmorPaint</a></li> | ||
<li><a class="link-secondary text-decoration-none" href="https://armorlab.org/">ArmorLab</a></li> | ||
<li><a class="link-secondary text-decoration-none" href="https://armorforge.org/">ArmorForge</a></li> | ||
</ul> | ||
</div> | ||
<div class="col-6 col-md"> | ||
<h5>Social</h5> | ||
<ul class="list-unstyled text-small"> | ||
<li><a class="link-secondary text-decoration-none" href="https://youtube.com/c/armory3d">YouTube</a></li> | ||
<li><a class="link-secondary text-decoration-none" href="https://artstation.com/armory">ArtStation</a></li> | ||
<li><a class="link-secondary text-decoration-none" href="https://x.com/armory3d">X</a></li> | ||
</ul> | ||
</div> | ||
<div class="col-6 col-md"> | ||
<h5>Links</h5> | ||
<ul class="list-unstyled text-small"> | ||
<li><a class="link-secondary text-decoration-none" href="https://github.com/armory3d/armortools">GitHub</a></li> | ||
<li><a class="link-secondary text-decoration-none" href="https://github.com/armory3d/armortools/issues">Tracker</a></li> | ||
<li><a class="link-secondary text-decoration-none" href="https://armorsculpt.org/notes">Release Notes</a></li> | ||
</ul> | ||
</div> | ||
<div class="col-6 col-md"> | ||
<h5>About</h5> | ||
<ul class="list-unstyled text-small"> | ||
<li><a class="link-secondary text-decoration-none" href="https://armorsculpt.org/community">Contact</a></li> | ||
<li><a class="link-secondary text-decoration-none" href="https://armorsculpt.org/privacy">Privacy</a></li> | ||
<li><a class="link-secondary text-decoration-none" href="https://github.com/armory3d/armortools/blob/main/LICENSE.md">License</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</footer> | ||
</main> | ||
<script src="css/bootstrap.bundle.min.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.