mirror of
https://github.com/ctruLua/ctrulua.github.io.git
synced 2025-10-27 08:29:31 +00:00
A New Journey Begins...
Removed useless "About" page Removed post (TEST) Tweaked config Tweaked CSS Tweaked HTML Added a favicon Added a .gitignore Added post (Here it is!) Added header links Added intro on index page
This commit is contained in:
parent
c2d62372ef
commit
506d7a9d80
9 changed files with 55 additions and 42 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
_site
|
||||
.jekyll-metadata
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# Site settings
|
||||
title: Ctrµlua
|
||||
description: "Lua homebrewing for 3ds"
|
||||
title: ctrµLua
|
||||
description: "A Lua parser for 3DS"
|
||||
baseurl: ""
|
||||
url: "http://ctrulua.github.io"
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,11 @@
|
|||
</svg>
|
||||
</a>
|
||||
<div class="trigger">
|
||||
<a class="page-link" href="{{ "/feed.xml" | prepend: site.baseurl }}">RSS</a>
|
||||
<a class="page-link" href="https://github.com/ctruLua/ctruLua" >GitHub</a>
|
||||
<a class="page-link" href="https://github.com/ctruLua" >Organization</a>
|
||||
<a class="page-link" href="http://thomas99.no-ip.org/ctrulua/latest/html/" >Documentation</a>
|
||||
<a class="page-link" href="http://thomas99.no-ip.org:3000/ctrulua" >Integration</a>
|
||||
{% for page in site.pages %}
|
||||
{% if page.title %}<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>{% endif %}
|
||||
{% endfor %}
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
---
|
||||
layout: post
|
||||
title: "TEST"
|
||||
date: 2015-10-23 00:00:00
|
||||
categories: status
|
||||
---
|
||||
|
||||
<pre><code>local ctr = require("ctr")
|
||||
local gfx = require("ctr.gfx")
|
||||
local hid = require("ctr.hid")
|
||||
|
||||
while ctr.run() do
|
||||
hid.read()
|
||||
local keys = hid.keys()
|
||||
if keys.held.start then break end
|
||||
|
||||
gfx.startFrame(gfx.GFX_TOP)
|
||||
gfx.text(2, 2, "TEST")
|
||||
gfx.endFrame()
|
||||
gfx.render()
|
||||
end
|
||||
</code></pre>
|
||||
|
||||
10
_posts/2015-10-27-here-it-is.md
Normal file
10
_posts/2015-10-27-here-it-is.md
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
layout: post
|
||||
title: "Here it is!"
|
||||
date: 2015-10-27 00:00:00
|
||||
categories: status
|
||||
excerpt_separator: <!--more-->
|
||||
---
|
||||
|
||||
Here's a jolly nice, clean website and blog for us to use!<!--more-->
|
||||
The tweaks were made by Negi, and the whole writing too. Everything else is bare Jekyll.
|
||||
7
about.md
7
about.md
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
layout: page
|
||||
title: About
|
||||
permalink: /about/
|
||||
---
|
||||
|
||||
TODO
|
||||
20
css/main.css
20
css/main.css
|
|
@ -18,9 +18,9 @@ body {
|
|||
|
||||
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: 400; }
|
||||
|
||||
a { color: #2a7ae2; text-decoration: none; }
|
||||
a:hover { color: #000; text-decoration: underline; }
|
||||
a:visited { color: #205caa; }
|
||||
a { color: #b30000; text-decoration: none; }
|
||||
a:hover { color: #f00; text-decoration: underline; }
|
||||
a:visited { color: #a80000; }
|
||||
|
||||
/* Utility */
|
||||
|
||||
|
|
@ -41,7 +41,7 @@ a:visited { color: #205caa; }
|
|||
/* Site header */
|
||||
|
||||
.site-header {
|
||||
border-top: 5px solid #333;
|
||||
border-top: 5px solid #b30000;
|
||||
border-bottom: 1px solid #e8e8e8;
|
||||
min-height: 56px;
|
||||
background-color: white;
|
||||
|
|
@ -144,7 +144,11 @@ a:visited { color: #205caa; }
|
|||
/* Home styles */
|
||||
/* ----------------------------------------------------------*/
|
||||
|
||||
.home h1 { margin-bottom: 25px; }
|
||||
.home h1 { margin-bottom: 10px; font-size: 25px; margin-top: 10px; }
|
||||
|
||||
.home h2 { font-size: 20px; }
|
||||
|
||||
.home:not( .last ) { border-bottom: 1px solid #c2c2c2; padding-bottom: 10px; }
|
||||
|
||||
.posts { list-style-type: none; }
|
||||
|
||||
|
|
@ -227,14 +231,14 @@ a:visited { color: #205caa; }
|
|||
|
||||
.post pre,
|
||||
.post code {
|
||||
border: 1px solid #d5d5e9;
|
||||
background-color: #eef;
|
||||
border: 1px solid #e9d5d5;
|
||||
background-color: #fee;
|
||||
padding: 8px 12px;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
font-size: 15px;
|
||||
overflow:scroll;
|
||||
overflow:auto;
|
||||
}
|
||||
|
||||
.post code { padding: 1px 5px; }
|
||||
|
|
|
|||
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.7 KiB |
26
index.html
26
index.html
|
|
@ -4,6 +4,29 @@ layout: default
|
|||
|
||||
<div class="home">
|
||||
|
||||
<h1>What is ctrµLua?</h1>
|
||||
<p>ctrµLua, note the case, is, as you can deduce, a Lua parser for 3DS. It's born within the <a href="http://microlua.xooit.fr">µLua community</a> as an attempt to bring their favorite piece of software to the 3DS. The result ended being mighty different from what was µLua itself.</p>
|
||||
|
||||
<h1>What can it do?</h1>
|
||||
<p>You'll have to ask the guys at development. Or check the <a href="https://github.com/ctruLua/ctruLua/wiki">TODO list</a> on GitHub. The basics are in, so that's good.</p>
|
||||
|
||||
<h1>What about the lads that made it?</h1>
|
||||
|
||||
<h2><a href="https://github.com/orgs/ctruLua/people/Firew0lf">Firew0lf</a></h2>
|
||||
<p>We're... pretty sure he's a huge nerd. No, more like nerd king. He's one of the two developers on the project, and probably the one most eager to expand it. He also goes by geeker <span style="font-size: 10px;">and I personally believe he must be yelling at all times IRL</span>.</p>
|
||||
|
||||
<h2><a href="https://github.com/orgs/ctruLua/people/Reuh">Reuh</a></h2>
|
||||
<p>Same, a developer. Pretty mature and really silent<span style="font-size: 10px;">, I mean it, sometimes I wonder if he died in front of his screen</span>. Also probably a nerd.</p>
|
||||
|
||||
<h2><a href="https://github.com/orgs/ctruLua/people/NegiAD">Negi</a></h2>
|
||||
<p>Probably the only one who put his real name on GitHub. Loud-mouthed and pretty much useless. He did the <span style="font-size: 10px;">shitty</span> icon. A giga-nerd <span style="font-size: 10px;">and self-proclaimed "community"-manager because no one takes care of this damned website and because it's fun</span>. He never participates in code and unintentionally got credited.</p>
|
||||
|
||||
<h1>Oh, and...The lads before that?</h1>
|
||||
<p><a href="https://github.com/smealum">smea</a>, for the <a href="https://github.com/smealum/ctrulib">ctrulib</a>. And...Credits to whoever made the code they might have helped themselves on, if they did, that is.</p>
|
||||
</div>
|
||||
|
||||
<div class="home last">
|
||||
|
||||
<h1>Posts</h1>
|
||||
|
||||
<ul class="posts">
|
||||
|
|
@ -11,10 +34,9 @@ layout: default
|
|||
<li>
|
||||
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
|
||||
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
||||
{{ post.excerpt }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue