File: index.html

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (78 lines) | stat: -rw-r--r-- 3,127 bytes parent folder | download | duplicates (3)
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Lazarus</title>
    <meta charset="UTF-8">
    <meta name="author" content="Mattias Gaertner">
    <meta name="description" content="Start Page">
    <style media="all">
      body {
        font-family: helvetica, arial, sans-serif;
        font-weight: 400;
        font-size: 16px;
      }
      a:link {
        text-decoration: none;
        color: #993300;
      }
      .main_container {
        margin: 0 auto;
        width: 740px;
        background-color: white;
        box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.37);
        margin-top: 20px;
      }
      .logo_container {
        height: 100px;
        background: url(images/laztitle.svg) no-repeat;
        background-size: 740px 100px;
      }
      .txt_container {
        margin: 30px;
      }
      .header {
        font-weight: 700;
        padding: 0px 0px 6px 0px;
      }
      .fos22 {
        font-size: 22px;
      }
      .blue {
        color: #3a5796;
      }
    </style>
  </head>

  <body>
    <div class="main_container">
      <div class="logo_container"></div>
      <div class="txt_container">
        <div class="header fos22 blue">Welcome to Lazarus</div>
        Lazarus is a Rapid Application Development tool for Free Pascal and currently runs on Linux, Mac OS X, BSD and of course Windows.<br>
        It is freely available, open source and completely written in Free Pascal.<br>
        <br>
        The official Lazarus site is <a href="https://www.lazarus-ide.org/">https://www.lazarus-ide.org/</a>.<br>
        There is a wiki with a lot of information around Lazarus at <a href="http://wiki.lazarus.freepascal.org/">http://wiki.lazarus.freepascal.org/</a>.<br>
        Free Pascal can be found at <a href="https://www.freepascal.org/">https://www.freepascal.org/</a>.<br>
        <br>
        The Lazarus Component Library is licensed under a modified GNU Lesser General Public License.<br>
        The Lazarus IDE is licensed under the GNU General Public License.<br>
        <br>
        <a href="https://www.freepascal.org/docs.var">Free Pascal online documentation.</a><br>
        <a href="http://lazarus-ccr.sourceforge.net/docs/rtl">RTL - Free Pascal Run Time Library</a><br>
        <a href="http://lazarus-ccr.sourceforge.net/docs/fcl">FCL - Free Component Library</a><br>
        <a href="http://lazarus-ccr.sourceforge.net/docs/lcl">LCL - Lazarus Component Library</a><br>
        <a href="http://lazarus-ccr.sourceforge.net/docs/lazutils">LazUtils - Lazarus Utilities Package</a><br>
        <br>
        <div class="header blue">Offline help</div>
        Many help files are available for download in chm and inf format.<br>
        <br>
        Viewer for chm files: see <a href="http://wiki.freepascal.org/Installing_Help_in_the_IDE#Installing_CHM_Help_for_The_RTL.2C_FCL_and_LCL_in_the_Lazarus_IDE">Installing CHM help in the IDE</a><br>
        Viewer for inf files: see <a href="https://fpgui.sourceforge.net/docview_ide_integration.shtml">DocView IDE Integration</a>.<br>
        <br>
        <br>
        <br>
      </div>
    </div>
  </body>
</html>