ソースを参照

Slightly changed wording on homepage

Thomas Buck 8年前
コミット
1dc7acd8a1
1個のファイルの変更3行の追加3行の削除
  1. 3
    3
      input/index.md

+ 3
- 3
input/index.md ファイルの表示

27
 
27
 
28
 print int(difference_in_years)
28
 print int(difference_in_years)
29
 
29
 
30
-%--> year old Information Engineering student from Germany, mostly building stuff with AVR microcontrollers.
31
-All of my projects are released as [Free Software](http://www.gnu.org/philosophy/free-sw.html) on my [GitHub profile](https://github.com/xythobuz), with more informations here. Have fun!
30
+%--> year old hard- and software developer from Germany.
31
+All of my projects are released as free or open-source software on my [GitHub profile](https://github.com/xythobuz), with more information here. Have fun!
32
 
32
 
33
 ### Recent Blog Posts
33
 ### Recent Blog Posts
34
 
34
 
36
 from datetime import datetime
36
 from datetime import datetime
37
 posts = [p for p in pages if "post" in p] # get all blog post pages
37
 posts = [p for p in pages if "post" in p] # get all blog post pages
38
 posts.sort(key=lambda p: p.get("date"), reverse=True) # sort post pages by date
38
 posts.sort(key=lambda p: p.get("date"), reverse=True) # sort post pages by date
39
-for p in posts[0:4]:
39
+for p in posts[0:5]:
40
     date = datetime.strptime(p.date, "%Y-%m-%d").strftime("%B %d, %Y")
40
     date = datetime.strptime(p.date, "%Y-%m-%d").strftime("%B %d, %Y")
41
     print "  * **[%s](%s)** - %s" % (p.post, p.url, date) # markdown list item
41
     print "  * **[%s](%s)** - %s" % (p.post, p.url, date) # markdown list item
42
 %-->
42
 %-->

読み込み中…
キャンセル
保存