Skip to content

Commit 8e4bedd

Browse files
authored
Merge pull request #17 from equilaterus/dev
Improved site
2 parents 51c96df + 8f42676 commit 8e4bedd

File tree

6 files changed

+63
-18
lines changed

6 files changed

+63
-18
lines changed

assets/css/main.css

+12-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@
99
background-color: #000;
1010
}
1111

12+
.text-shadow {
13+
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
14+
}
15+
16+
.text-shadow-2 {
17+
text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
18+
}
19+
1220
.bg-stars {
1321
background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
1422
overflow: hidden;
@@ -80,7 +88,10 @@
8088
background-image: url('https://images.unsplash.com/photo-1542272201-b1ca555f8505?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1980&q=90');
8189
}
8290

83-
.clip-lt {
91+
.hero-image {
92+
animation: tv-animated 10s linear infinite;
93+
94+
/* Diagonal cut */
8495
@media screen(lg) {
8596
-webkit-clip-path: polygon(14% 0,100% 0,100% 100%,0 100%);
8697
clip-path: polygon(14% 0,100% 0,100% 100%,0);

config.yaml

+29-15
Original file line numberDiff line numberDiff line change
@@ -49,24 +49,30 @@ markup:
4949
xhtml: false
5050

5151
params:
52-
ShowFullIntroSlide: true
53-
ShowSimpleIntroSlide: false
54-
ShowSponsors: false
5552
IncludeStars: true
5653
NavbarSizeClass: max-w-screen-xl # max-w-full
57-
DisableStayUptodate: false
58-
54+
secondaryTitles: Legal,Contact,Blog
5955
GeneralHtmlClass: dark # Set to dark and DisableThemeToggle to run theme in dark mode by default
6056
DisableThemeToggle: true
6157

6258
title_description: "Empowering programmers"
63-
callToAction: Open Source
64-
heroImage: /game.png
65-
author: Equilaterus
59+
og_image: /equilaterus-default.png
6660
authorimage: ../assets/images/global/author.webp
67-
og_image: /images/tailbliss-cover.png
68-
moto: "Empowering creators"
69-
description: "We build technology for videogame creation, maximizing exploration and innovation capabilities for small and medium sized teams."
61+
author: Equilaterus
62+
63+
Intro:
64+
IncludeStars: true
65+
title: Open Source
66+
subtile: "Empowering creators"
67+
image: /game.png
68+
description: "We build technology for videogame creation, maximizing exploration and innovation capabilities for small and medium sized teams."
69+
#link: "More info->/about/"
70+
71+
VideoUrl: https://videos.pexels.com/video-files/8303104/8303104-hd_1920_1080_24fps.mp4
72+
VideoType: video/mp4
73+
EnableQuotes: true
74+
QuoteTitle: "Empowering"
75+
Quotes: "Content creators, Web developers, Streamers, Innovators, Game developers"
7076

7177
details:
7278
heading: "About us"
@@ -75,13 +81,15 @@ params:
7581
- text: "We are a team of experienced programmers and creatives that believe in technology as an empowerment mechanism."
7682
- text: "Our Mission is to empower creative people using software as a foundation, allowing everyone to take on high risk projects without compromising quality or artistic vision."
7783
- text: "Because of that, we decided to build hand-made technology focused on simplifying development workflows and share almost all of our code with the world."
84+
#link: "More info->/about/"
7885
moreDetails:
7986
heading: "Hand-made solutions for game developers"
8087
image: "/geppetto-ai.png"
8188
content:
8289
- text: "We believe that programming is about solving real problems, that is why our code is rocksolid while being fast and easy to understand. Our team has worked on different platforms, engines and toolkits including Unity an Unreal Engine."
8390
- text: "With that experience, we have started our journey of building a C powered game engine."
8491
- text: "Stay tunned for upcoming updates."
92+
#link: "More info->/about/"
8593
sponsors:
8694
heading: "Backed by world-renowned investors"
8795
content:
@@ -94,6 +102,7 @@ params:
94102
image: "images/global/sample-logo.svg"
95103
alt: "a"
96104
- identifier: b
105+
image: "/geppetto-ai.png"
97106
- identifier: c
98107
- identifier: d
99108
- identifier: e
@@ -150,9 +159,9 @@ menu:
150159
name: Contact
151160
url: /contact/
152161
weight: 50
153-
- identifier: legal
154-
name: Legal
155-
url: /legal/
162+
- identifier: wiki
163+
name: Wiki
164+
url: https://equilaterus.com/wiki
156165
weight: 60
157166
categories:
158167
- identifier: prose
@@ -189,10 +198,15 @@ menu:
189198
name: Contact
190199
url: /contact/
191200
weight: 50
201+
- identifier: wiki
202+
name: Wiki
203+
url: https://equilaterus.com/wiki
204+
weight: 60
192205
- identifier: legal
193206
name: Legal
194207
url: /legal/
195-
weight: 60
208+
weight: 70
209+
196210

197211
markup:
198212
goldmark:

layouts/index.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{{ define "main" }}
2+
3+
<main>
4+
{{ partial "slide-fullintro" (dict "Context" .Site.Params.Intro ) }}
5+
6+
{{ partial "section-right" (dict "Context" .Site.Params.Details ) }}
7+
{{ partial "section-left" (dict "Context" .Site.Params.MoreDetails ) }}
8+
{{ partial "section-blog" . }}
9+
10+
{{ partial "stayuptodate" . }}
11+
</main>
12+
{{ end }}

layouts/partials/nav-logo.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<a href="/" class="flex text-gray-100 transition duration-1000 ease-in-out group">
2+
<img src="/logo-equilaterus-windmill.png"
3+
class="transition-opacity h-9 w-9 group-hover:opacity-50 group-focus:opacity-70"
4+
alt="{{ .Site.Title }} Logo" />
5+
<img src="/logo-equilaterus.svg"
6+
class="transition-opacity h-9 pl-2 group-hover:opacity-50 group-focus:opacity-70"
7+
alt="{{ .Site.Title }} Logo" />
8+
</a>

tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const defaultTheme = require('tailwindcss/defaultTheme')
22

33
// tailwind.config.js
44
module.exports = {
5-
content: ['./themes/tailbliss/layouts/**/*.html', './themes/tailbliss/content/**/*.md'],
5+
content: ['./themes/tailbliss/layouts/**/*.html', './themes/tailbliss/content/**/*.md', './layouts/**/*.html', './content/**/*.md'],
66
darkMode: 'class',
77
theme: {
88
fontFamily: {

0 commit comments

Comments
 (0)