Skip to content

Commit 54e0cd1

Browse files
committed
added missing files
1 parent 61c3180 commit 54e0cd1

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
_site
2+
.sass-cache
3+
.jekyll-metadata

_config.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Site settings
2+
title: SmallBASIC Language reference
3+
4+
description: > # this means to ignore newlines until "baseurl:"
5+
SmallBASIC is a fast and easy to learn BASIC language interpreter ideal for
6+
everyday calculations, scripts and prototypes. SmallBASIC includes trigonometric,
7+
matrices and algebra functions, a built in IDE, a powerful string library,
8+
system, sound, and graphic commands along with structured programming syntax.
9+
baseurl: "" # the subpath of your site, e.g. /blog
10+
url: "http://smallbasic.sourceforge.net"
11+
github_username: smallbasic
12+
13+
# Build settings
14+
markdown: kramdown

feed.xml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
layout: null
3+
---
4+
<?xml version="1.0" encoding="UTF-8"?>
5+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
6+
<channel>
7+
<title>{{ site.title | xml_escape }}</title>
8+
<description>{{ site.description | xml_escape }}</description>
9+
<link>{{ site.url }}{{ site.baseurl }}/</link>
10+
<atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
11+
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
12+
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
13+
<generator>Jekyll v{{ jekyll.version }}</generator>
14+
{% for post in site.posts limit:10 %}
15+
<item>
16+
<title>{{ post.title | xml_escape }}</title>
17+
<description>{{ post.content | xml_escape }}</description>
18+
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
19+
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
20+
<guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
21+
{% for tag in post.tags %}
22+
<category>{{ tag | xml_escape }}</category>
23+
{% endfor %}
24+
{% for cat in post.categories %}
25+
<category>{{ cat | xml_escape }}</category>
26+
{% endfor %}
27+
</item>
28+
{% endfor %}
29+
</channel>
30+
</rss>

0 commit comments

Comments
 (0)