Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _i18n/de.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
meta:
description: Spielentwicklung in 2D & 3D, für platt­form­über­grei­fende Projekte sowie VR Ideen!
dir: ltr
header:
features: Funktionen
showcase: Galerie
Expand Down
1 change: 1 addition & 0 deletions _i18n/en.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
meta:
description: Develop your 2D & 3D games, cross-platform projects, or even XR ideas!
dir: ltr
header:
features: Features
showcase: Showcase
Expand Down
1 change: 1 addition & 0 deletions _i18n/es.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
meta:
description: Desarrolla tus juegos 2D y 3D, proyectos multiplataforma o incluso XR
dir: ltr
header:
features: Funciones
showcase: Creaciones
Expand Down
1 change: 1 addition & 0 deletions _i18n/fr.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
meta:
description: Développez vos jeux en 2D et 3D, des projets cross-plateformes ou même des applications XR !
dir: ltr
header:
features: Fonctions
showcase: Vitrine
Expand Down
1 change: 1 addition & 0 deletions _i18n/ko.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
meta:
description: 2D 및 3D 게임, 크로스 플랫폼 프로젝트, 또는 XR 아이디어까지 개발하세요!
dir: ltr
header:
features: 기능
showcase: 쇼케이스
Expand Down
1 change: 1 addition & 0 deletions _i18n/zh-cn.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
meta:
description: 开发你的 2D & 3D 游戏,跨平台项目,甚至是 XR 创意!
dir: ltr
header:
features: 特性
showcase: 展示
Expand Down
1 change: 1 addition & 0 deletions _i18n/zh-tw.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
meta:
description: 開發你的 2D 與 3D 遊戲,跨平台專案,甚至是 XR 創意!
dir: ltr
header:
features: 特性
showcase: 展示
Expand Down
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="{% current_lang %}">
<html lang="{% current_lang %}" dir="{% t meta.dir %}">

<head>
<meta charset="utf-8">
Expand Down
4 changes: 4 additions & 0 deletions assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,10 @@ p.small {
position: relative;
left: 3px;
}
html[dir="rtl"] .btn.btn-download > .download-hint {
border-radius: var(--button-border-radius) 0 0 var(--button-border-radius);
left: -3px;
}

.date-big {
font-size: 64px;
Expand Down
2 changes: 1 addition & 1 deletion pages/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ <h1>{% t home.h1 %}</h1>

<section class="container padded">
<h2>{% t home.latest_news %}</h2>
<div class="flex eqsize responsive" style="gap: 30px;">
<div class="flex eqsize responsive" style="gap: 30px;" dir="ltr">

{% assign latest_posts = site.article | sort:"date" | reverse %}
{% for post in latest_posts limit:1 %}
Expand Down