[presentations] Add category and NotGDC first presentation.
This commit is contained in:
parent
27cf87fd8e
commit
2e9dcad605
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Presentations
|
||||||
|
menu_title: Presentations
|
||||||
|
layout: rss-list
|
||||||
|
---
|
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
title: "NotGDC 2023"
|
||||||
|
mobile_menu_title: "NotGDC 2023"
|
||||||
|
get_in_touch: true
|
||||||
|
date: 2023-03-23
|
||||||
|
news_keywords: [ "NotGDC", "LOVE2D", "Game Development", "gamedev", "Yui", "user interface", "UI" ]
|
||||||
|
---
|
||||||
|
|
||||||
|
## NotGDC 2023
|
||||||
|
|
||||||
|
During [NotGDC 2023](https://notgdc.io) we introduce [Yui](https://gitea.it/1414codeforge/yui) -- **Yet another User Interface** library.
|
||||||
|
|
||||||
|
|
||||||
|
You can use it to effortlessly create user interfaces for your game,
|
||||||
|
using the [LÖVE](https://love2d.org) 2D game engine.
|
||||||
|
Its main features are:
|
||||||
|
|
||||||
|
- Declarative approach to interface building
|
||||||
|
- Extensible widget library
|
||||||
|
- Out of the box localization support
|
||||||
|
- Intuitive widget layout on screen
|
||||||
|
- Built-in navigation via mouse, joystick or keyboard
|
||||||
|
- Reasonably small and hackable codebase
|
||||||
|
|
||||||
|
The following slides summarize **Yui**'s strong points and give a taste of how it looks and feels - on code and on screen.
|
||||||
|
|
||||||
|
Enjoy!
|
||||||
|
|
||||||
|
[Download PDF](notgdc-2023-yui.pdf)
|
Binary file not shown.
|
@ -11,13 +11,13 @@
|
||||||
<div id="mobile-subnav">
|
<div id="mobile-subnav">
|
||||||
<input type="checkbox" name="mobile-toggle" id="mobile-toggle">
|
<input type="checkbox" name="mobile-toggle" id="mobile-toggle">
|
||||||
<div class="" id="menu">
|
<div class="" id="menu">
|
||||||
{{ with .Site.GetPage "articles" }}
|
|
||||||
<a href="{{ "articles/" | relLangURL }}" class="navbar-item">{{ default .Params.menu_title .Params.mobile_menu_title }}</a>
|
|
||||||
{{ end }}
|
|
||||||
{{ with .Site.GetPage "blog" }}
|
{{ with .Site.GetPage "blog" }}
|
||||||
<a href="{{ "blog/" | relLangURL }}" class="navbar-item">{{ default .Params.menu_title .Params.mobile_menu_title }}</a>
|
<a href="{{ "blog/" | relLangURL }}" class="navbar-item">{{ default .Params.menu_title .Params.mobile_menu_title }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<a href="https://git.doublefourteen.io/explore/repos" class="navbar-item external-link external-link-light">{{ i18n "menu-source" }}</a>
|
{{ with .Site.GetPage "presentations" }}
|
||||||
|
<a href="{{ "presentations/" | relLangURL }}" class="navbar-item">{{ default .Params.menu_title .Params.mobile_menu_title }}</a>
|
||||||
|
{{ end }}
|
||||||
|
<a href="https://gitea.it/1414codeforge" class="navbar-item external-link external-link-light">{{ i18n "menu-source" }}</a>
|
||||||
{{ with .Site.GetPage "doublefourteen"}}
|
{{ with .Site.GetPage "doublefourteen"}}
|
||||||
<a href="{{ "doublefourteen/" | relLangURL }}" class="navbar-item df-community-link">
|
<a href="{{ "doublefourteen/" | relLangURL }}" class="navbar-item df-community-link">
|
||||||
{{ default .Params.menu_title .Params.mobile_menu_title }}
|
{{ default .Params.menu_title .Params.mobile_menu_title }}
|
||||||
|
@ -29,13 +29,13 @@
|
||||||
<nav id="navbar" class="nav">
|
<nav id="navbar" class="nav">
|
||||||
<div class="container" style="display:flex; justify-content: space-between;">
|
<div class="container" style="display:flex; justify-content: space-between;">
|
||||||
<div>
|
<div>
|
||||||
{{ with .Site.GetPage "articles" }}
|
|
||||||
<a href="{{ "articles/" | relLangURL }}" class="navbar-item">{{ .Params.menu_title }}</a>
|
|
||||||
{{ end }}
|
|
||||||
{{ with .Site.GetPage "blog" }}
|
{{ with .Site.GetPage "blog" }}
|
||||||
<a href="{{ "blog/" | relLangURL }}" class="navbar-item">{{ .Params.menu_title }}</a>
|
<a href="{{ "blog/" | relLangURL }}" class="navbar-item">{{ .Params.menu_title }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<a href="https://git.doublefourteen.io/explore/repos" class="navbar-item external-link external-link-light">{{ i18n "menu-source" }}</a>
|
{{ with .Site.GetPage "presentations" }}
|
||||||
|
<a href="{{ "presentations/" | relLangURL }}" class="navbar-item">{{ .Params.menu_title }}</a>
|
||||||
|
{{ end }}
|
||||||
|
<a href="https://gitea.it/1414codeforge" class="navbar-item external-link external-link-light">{{ i18n "menu-source" }}</a>
|
||||||
{{ with .Site.GetPage "doublefourteen" }}
|
{{ with .Site.GetPage "doublefourteen" }}
|
||||||
<a href="{{ "doublefourteen/" | relLangURL }}" class="navbar-item df-community-link">
|
<a href="{{ "doublefourteen/" | relLangURL }}" class="navbar-item df-community-link">
|
||||||
{{ .Params.menu_title }}
|
{{ .Params.menu_title }}
|
||||||
|
|
Loading…
Reference in New Issue