-
Notifications
You must be signed in to change notification settings - Fork 1
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
0 parents
commit 177f4f2
Showing
18 changed files
with
213 additions
and
0 deletions.
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,2 @@ | ||
.idea | ||
resources |
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,6 @@ | ||
--- | ||
title: "{{ replace .Name "-" " " | title }}" | ||
date: {{ .Date }} | ||
draft: true | ||
--- | ||
|
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,6 @@ | ||
baseURL = "https://alterorb/" | ||
languageCode = "en-us" | ||
title = "AlterOrb" | ||
theme = "altertheme" | ||
|
||
paginate = 10 |
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,15 @@ | ||
--- | ||
title: "Latest new post" | ||
date: 2020-09-13T20:13:10-03:00 | ||
summary: A brief summary for this new post. | ||
--- | ||
|
||
#### What is lorem impsum? | ||
|
||
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard | ||
dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen | ||
book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially | ||
unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more | ||
recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. | ||
|
||
|
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,2 @@ | ||
+++ | ||
+++ |
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,30 @@ | ||
@import "colors"; | ||
|
||
body { | ||
height: 100vh; | ||
margin: auto; | ||
background-color: $background-color; | ||
font-family: 'Roboto', sans-serif; | ||
color: $text-color; | ||
} | ||
|
||
body a { | ||
color: $text-highlight-light-color; | ||
text-decoration: none; | ||
} | ||
|
||
body a:visited { | ||
color: $text-highlight-light-color; | ||
} | ||
|
||
.wrapper { | ||
display: grid; | ||
min-height: 100%; | ||
grid-template-rows: auto 1fr auto; | ||
margin: 0 auto; | ||
} | ||
|
||
.content .main { | ||
margin: 0 auto; | ||
max-width: 1150px; | ||
} |
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,6 @@ | ||
$background-color: #292a2d; | ||
$background-color-secondary: #252627; | ||
$text-color: #a9a9b3; | ||
$text-highlight-color: #05d9e8; | ||
$text-highlight-light-color: #d1f7ff; | ||
$text-highlight-dark-color: #ff2a6d; |
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,11 @@ | ||
@import "colors"; | ||
|
||
footer { | ||
padding: 25px; | ||
background-color: $background-color-secondary; | ||
} | ||
|
||
footer .inner { | ||
margin: 0 auto; | ||
max-width: 1200px; | ||
} |
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,17 @@ | ||
@import "colors"; | ||
|
||
header { | ||
padding: 5px 5px 5px 15px; | ||
background-color: $background-color-secondary; | ||
} | ||
|
||
header .inner { | ||
margin: 0 auto; | ||
max-width: 1200px; | ||
} | ||
|
||
header h1 { | ||
color: white; | ||
font-size: 28px; | ||
font-weight: 500; | ||
} |
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,2 @@ | ||
@import "colors", "header", "body", "footer", "text"; | ||
|
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,9 @@ | ||
@import "colors"; | ||
|
||
.text-highlight { | ||
color: $text-highlight-color; | ||
} | ||
|
||
.text-highlight-light { | ||
color: $text-highlight-light-color; | ||
} |
Empty file.
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,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
{{- partial "head.html" . -}} | ||
|
||
<body> | ||
<div class="wrapper"> | ||
<header> | ||
{{- partial "header.html" . -}} | ||
</header> | ||
<div class="content"> | ||
{{- block "main" . }}{{- end }} | ||
</div> | ||
<footer> | ||
{{- partial "footer.html" . -}} | ||
</footer> | ||
</div> | ||
</body> | ||
|
||
</html> |
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,58 @@ | ||
{{define "main"}} | ||
<div class="main"> | ||
<section> | ||
<h2>About</h2> | ||
<p> | ||
AlterOrb is a project that aims to emulate all the original features that were available in the original | ||
FunOrb games. | ||
It solely focuses on the single-player games that were available. | ||
</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Downloading the Launcher</h2> | ||
<p> | ||
Before downloading, make sure you have at least Java 11 installed, you can download Java from the | ||
<a href="https://adoptopenjdk.net/" target="_parent">AdoptOpenJDK Project</a>. | ||
</p> | ||
<p> | ||
The latest launcher version can always be downloaded from the | ||
<a href="https://github.com/alterorb/launcher/releases" target="_parent">GitHub releases page</a>. | ||
</p> | ||
</section> | ||
|
||
<section> | ||
<h2>Creating an account</h2> | ||
<p> | ||
You create an account by attempting to logging in with an unique username & password, upon successful login, | ||
your account has been created. | ||
</p> | ||
</section> | ||
|
||
<section> | ||
<h2>But I'm looking for the multiplayer games!</h2> | ||
<p> | ||
Sadly AlterOrb does not support any of the multiplayer games. But the most popular ones have community | ||
remakes, below you can find a direct link to a few. You can find more info about other projects in the | ||
FunOrb discord linked in the section below. | ||
</p> | ||
<ul> | ||
<li><a href="https://www.arcanists2.com/">Arcanists 2</a></li> | ||
</ul> | ||
</section> | ||
|
||
<section> | ||
<h2>Getting help</h2> | ||
<p> | ||
If you’re having any trouble downloading or using the launcher you can ask for help in the following | ||
channels: | ||
</p> | ||
|
||
<ul> | ||
<li>The <a href="https://discordapp.com/invite/MGfDrDf">FunOrb discord</a> server</li> | ||
<li>The <a href="https://discordapp.com/invite/a4qUynM">FunOrb Central discord</a> server</li> | ||
<li>The irc channel #alterorb at <a href="https://qchat.rizon.net/?channels=alterorb">rizon.net</a></li> | ||
</ul> | ||
</section> | ||
</div> | ||
{{end}} |
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,3 @@ | ||
<div class="inner"> | ||
<span>Repository at <a href="https://github.com/alterorb">GitHub</a></span> | ||
</div> |
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,15 @@ | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
{{$page_title := ""}} | ||
{{if not .IsHome}} | ||
{{$page_title = delimit (slice "|" .Title) " "}} | ||
{{end}} | ||
{{$title := delimit (slice site.Title $page_title) " "}} | ||
<title>{{$title}}</title> | ||
|
||
{{ $sass := resources.Get "sass/main.scss" }} | ||
{{ $style := $sass | resources.ToCSS }} | ||
<link rel="stylesheet" href="{{ $style.RelPermalink }}"> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet"> | ||
</head> |
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,4 @@ | ||
<div class="inner"> | ||
<a href="{{relLangURL ""}}"><h1 class="text-highlight-light">Alter<span class="text-highlight">Orb</span> | ||
</h1></a> | ||
</div> |
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,8 @@ | ||
name = "AlterTheme" | ||
license = "MIT" | ||
tags = [] | ||
features = [] | ||
min_version = "0.41.0" | ||
|
||
[author] | ||
name = "Hexagon" |