-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathindex.html
54 lines (47 loc) · 2.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
layout: home
---
<div class="jumbotron p-4 mb-3">
<div class="row home-intro">
<div class="col-lg-12 home-intro-text">
<p style="font-size: 1.25rem;">
wxWidgets is a C++ library that lets developers create applications for
Windows, macOS, Linux and other platforms with a single code base. It
has popular language bindings for
<a href="https://wxpython.org/" target="_blank">Python</a>,
<a href="https://rubygems.org/gems/wxruby3" target="_blank">Ruby</a>,
<a href="https://github.com/pkulchenko/wxlua" target="_blank">Lua</a>,
<a href="https://wxperl.sourceforge.net/" target="_blank">Perl</a> and
several other languages, and unlike other cross-platform toolkits,
wxWidgets gives applications a truly native look and feel because it
uses the platform's native API rather than emulating the GUI. It's also
extensive, free, open-source and mature.
</p>
</div>
</div>
<div style="margin-top: 20px;">
<div class="d-block d-sm-none btn-group-vertical">
<a href="/about/" class="btn btn-lg btn-primary"><i class="fas fa-info-circle fa-fw"></i> Learn more »</a>
<a href="/downloads/" class="btn btn-lg btn-primary"><i class="fas fa-download fa-fw"></i> Download now »</a>
</div>
<div class="d-none d-sm-block text-center">
<p>
<a href="/about/" class="btn btn-lg btn-primary"><i class="fas fa-info-circle fa-fw"></i> Learn more »</a> or
<a href="/downloads/" class="btn btn-lg btn-primary"><i class="fas fa-download fa-fw"></i> Download now »</a>
</p>
</div>
</div>
</div>
<h1>Latest News</h1>
{% assign promoted_posts = site.posts | where: "promoted", true %}
{% for post in promoted_posts limit:5 %}
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p class="text-muted">Posted on <time datetime="{{ post.date | datetime | date_to_xmlschema }}"{% if updated %} data-updated="true"{% endif %}>{{ post.date | date: "%B %d, %Y" }}</time></p>
{{ post.content }}
{% if post.comments and site.disqus_shortname %}
<p><a href="{{ post.url }}#disqus_thread" data-disqus-identifier="{{ post.id | escape }}">Comments</a></p>
{% endif %}
{% endfor %}
<p class="text-center" style="margin-top: 2em;">
<a class="btn btn-lg btn-outline-primary" href="/news/archive/"><i class="fas fa-calendar-alt fa-fw"></i> News Archive</a>
</p>