-
Notifications
You must be signed in to change notification settings - Fork 52
/
tutorials.php
90 lines (78 loc) · 3.03 KB
/
tutorials.php
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
<?php
include_once "./includes/header.php";
?>
<!-- Main Info starts -->
<div id="main_info_cont">
<div id="main_info_left">
<div id="main_info_left_in">
<div class="content_style1">
<div class="content_style1_heading">
<h3>What is Texinfo?</h3>
</div>
<div class="content_style1_info">
<p>Texinfo is a documentation system that uses a single source file to produce both online information and printed output. This means that instead of writing different documents for online information and another for a printed manual, you need write only one document so that when the work is revised, you need revise only that one document. Texinfo supports a number of output formats, both online and printed, such as DVI, HTML, INFO, PDF, XML, etc.. The Texinfo system is well-integrated with GNU Emacs</p><br />
<br /><strong><a href="http://www.gnu.org/software/texinfo">»»Visit the Texinfo homepage</a></strong>
</div>
</div>
</div>
</div>
<div id="main_info_center">
<div id="main_info_center_in">
<!-- <div class="content_style2">
<div class="content_style2_heading">
<h3>New Tutorials</h3>
</div>
<div class="content_style2_info">
<p>
<a href="./tutorials/gnu_octave.php">GNU Octave: Free Matlab</a>
</p>
</div>
</div>
<br />
-->
<div class="content_style2">
<div class="content_style2_heading">
<h3>The Linux Documentation Project</h3>
</div>
<div class="content_style2_info">
<p>
The <a href="http://glug.nith.ac.in/LDP">Linux Documentation Project (LDP)</a> is an all-volunteer project that maintains a large collection of GNU and Linux-related documentation and publishes the collection online. It began as a way for hackers to share their documentation with each other and with their users, and for users to share documentation with each other. Its documents tend to be oriented towards experienced users such as professional system administrators, but it also contains tutorials for beginners.<br /><a href="http://glug.nith.ac.in/LDP"> »»Visit LDP HOME.</a><br />
GLUG NITH also hosts mirror website of LDP. You can visit the mirror website <a href="/LDP">here</a>.
</p>
</div>
</div>
<br />
<!-- <div class="content_style2">
<div class="content_style2_heading">
<h3>Archives</h3>
</div>
<div class="content_style2_info">
<p>
<a href="./tutorials/pro_ftpd.php">ProFTPD: Quick and Dirty</a>
<br /><br />
<a href="./tutorials/apache.php"> Apache: Very quick and Extremely dirty</a>
<br /><br />
<a href="./tutorials/vs_ftpd.php">vsftpd: Short n Sweet</a>
<br /><br />
</p>
</div>
</div>
-->
</div>
</div>
<div id="main_info_right">
<div id="main_info_right_in">
<?php
include_once "./includes/main_info_right.php";
?>
</div>
</div>
<div class="float_clear">
</div>
</div>
<!-- Main Info ends -->
<div class="clear_float">
</div>
<?php
include_once "./includes/footer.php";
?>