forked from SFML/SFML-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn.php
More file actions
94 lines (85 loc) · 4.44 KB
/
learn.php
File metadata and controls
94 lines (85 loc) · 4.44 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
$breadcrumbs = array
(
'Learn' => 'learn.php'
);
include('header.php');
?>
<h1>Learn</h1>
<div class="link-box two-columns-left">
<a class="style" href="tutorials/2.3">
<div class="title">Tutorials</div>
<div class="description">Learn how to use SFML</div>
</a>
</div>
<div class="link-box two-columns-right">
<a class="apidocs" href="documentation/2.3.2">
<div class="title">API Documentation</div>
<div class="description">Reference</div>
</a>
</div>
<div class="link-box two-columns-left">
<a class="faq" href="faq.php">
<div class="title">FAQ</div>
<div class="description">Frequently Asked Questions</div>
</a>
</div>
<div class="link-box two-columns-right">
<a class="license" href="license.php">
<div class="title">License</div>
<div class="description">zlib/png license</div>
</a>
</div>
<h2 id="books"><a class="h2-link" href="#books">Books</a><a class="back-to-top" href="#top" title="Top of the page"></a></h2>
<div class="news">
Use the code <strong>sfgde50</strong> to get <strong>50%</strong> discount on <a href="https://www.packtpub.com/all/?search=%22sfml%22">SFML e-books</a> published by Packt
</div>
<br>
<div class="book">
<a class="link" href="https://www.packtpub.com/game-development/sfml-game-development" title="SFML Game Development book web page"><img src="images/books/sfml-game-development.png" alt="SFML Game Development book cover" /></a>
<div class="description">
<p class="title">SFML Game Development</p>
<a class="link" href="https://www.packtpub.com/game-development/sfml-game-development" title="SFML Game Development book web page">
https://www.packtpub.com/game-development/sfml-game-development
</a>
</div>
</div>
<div class="book">
<a class="link" href="https://www.packtpub.com/game-development/sfml-essentials" title="SFML Essentials book web page"><img src="images/books/sfml-essentials.png" alt="SFML Essentials book cover" /></a>
<div class="description">
<p class="title">SFML Essentials</p>
<a class="link" href="https://www.packtpub.com/game-development/sfml-essentials" title="SFML Essentials book web page">
https://www.packtpub.com/game-development/sfml-essentials
</a>
</div>
</div>
<div class="book">
<a class="link" href="https://www.packtpub.com/game-development/sfml-blueprints" title="SFML Blueprints book web page"><img src="images/books/sfml-blueprints.png" alt="SFML Blueprints book cover" /></a>
<div class="description">
<p class="title">SFML Blueprints</p>
<a class="link" href="https://www.packtpub.com/game-development/sfml-blueprints" title="SFML Blueprints book web page">
https://www.packtpub.com/game-development/sfml-blueprints
</a>
</div>
</div>
<div class="book">
<a class="link" href="https://www.packtpub.com/game-development/sfml-game-development-example" title="SFML Game Development By Example book web page"><img src="images/books/sfml-game-development-by-example.png" alt="SFML Game Development By Example book cover" /></a>
<div class="description">
<p class="title">SFML Game Development By Example</p>
<a class="link" href="https://www.packtpub.com/game-development/sfml-game-development-example" title="SFML Game Development By Example book web page">
https://www.packtpub.com/game-development/sfml-game-development-example
</a>
</div>
</div>
<h2 id="old-docs"><a class="h2-link" href="#old-docs">Documentation for older versions</a><a class="back-to-top" href="#top" title="Top of the page"></a></h2>
<ul>
<li><strong>SFML 2.3.1:</strong> <a href="tutorials/2.3">Tutorials</a>, <a href="documentation/2.3.1">API documentation</a></li>
<li><strong>SFML 2.3:</strong> <a href="tutorials/2.3">Tutorials</a>, <a href="documentation/2.3">API documentation</a></li>
<li><strong>SFML 2.2:</strong> <a href="tutorials/2.2">Tutorials</a>, <a href="documentation/2.2">API documentation</a></li>
<li><strong>SFML 2.1:</strong> <a href="tutorials/2.1">Tutorials</a>, <a href="documentation/2.1">API documentation</a></li>
<li><strong>SFML 2.0:</strong> <a href="tutorials/2.0">Tutorials</a>, <a href="documentation/2.0">API documentation</a></li>
<li><strong>SFML 1.6:</strong> <a href="tutorials/1.6">Tutorials</a>, <a href="documentation/1.6">API documentation</a></li>
</ul>
<?php
require("footer.php");
?>