home.pt
4.11 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
95
96
97
98
99
100
101
102
103
104
105
<html metal:use-macro="load: base.pt">
<div metal:fill-slot="content">
<link href="/static/css/theme.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<style type="text/css">
.judul {
padding: .5em;
font-weight: bold;
text-transform: uppercase;
background: #009688;
color: #fff;
}
.slide {
padding: 1.125%;
}
.about {
padding-right: 4%;
padding-left: 2.75%;
margin-top: -.675%;
}
.well {
font-family: 'Roboto','Helvetica', sans-serif;
font-size: 1.125em;
line-height: 1.875em;
}
.well h3 {
margin-top: .2em;
text-transform: capitalize;
font-size: 2.275em;
font-weight: bold;
color: #616161;
}
</style>
<div class="well">
<div class="row">
<div class="col-md-12">
<h1 class="judul">Aplikasi ${request.app_name}</h1>
</div>
</div>
<div class="row">
<div id="myCarousel-2" class="carousel slide">
<div class="carousel-inner">
<!-- Slide 1 -->
<div class="item active">
<div class="col-md-7">
<img src="/static/img/slide-home-3.jpg" alt="" style="max-width: 100%;">
</div>
<div class="col-md-5 about">
<h3>Tentang Kami</h3>
<p>Kami adalah perusahaan yang bergerak di bidang pembuatan perangkat lunak.</p>
<p> Kami telah berpengalaman merancang dan membuat aplikasi keuangan yang telah digunakan oleh pemerintah daerah.</p>
</div>
</div>
<!-- Slide 2 -->
<div class="item">
<div class="col-md-7">
<img src="/static/img/slide-home-1.jpg" alt="" style="max-width: 100%;">
</div>
<div class="col-md-5 about">
<h3>Spesifikasi Keahlian</h3>
<p>Aplikasi yang kami buat dirancang menggunakan platform open source yang terdiri dari:</p>
<ul>
<li>Web Framework<a href="http://pylonsproject.org/">Pyramid</a> </li>
<li>Template <a href="https://pypi.python.org/pypi/ziggurat-foundations">Ziggurat Foundations</a></li>
<li>Template <a href="http://docs.pylonsproject.org/projects/pyramid-chameleon/en/latest/">Chameleon</a></li>
<li>Form Generator <a href="http://docs.pylonsproject.org/projects/deform/">Deform</a></li>
<li>CSS Framework <a href="http://getbootstrap.com">Bootstrap</a></li>
<li>Database <a href="http://postgresql.org">Postgres SQL</a></li>
</ul>
</div>
</div>
<!-- Slide 3 -->
<div class="item">
<div class="col-md-7">
<img src="/static/img/slide-home-2.jpg" alt="" style="max-width: 100%;">
</div>
<div class="col-md-5 about">
<h3>Produk dan Jasa</h3>
<p>Perusahaan kami berpengalaman dalam pembuatan:</p>
<ul>
<li>Sistem Informasi BPHTB</li>
<li>Sistem Informasi Pajak Asli Daerah Non PBB BPHTB</li>
<li>Aplikasi Payment Online System PBB (POS PBB)</li>
<li>Aplikasi Integrasi Pembayaran dengan Perbankan</li>
<li>Pembuatan dan Management Jaringan</li>
</ul>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel-2" data-slide="prev" style="background: none;"> <span class="glyphicon glyphicon-chevron-left"></span> </a>
<a class="right carousel-control" href="#myCarousel-2" data-slide="next" style="background: none;"> <span class="glyphicon glyphicon-chevron-right"></span> </a>
</div>
</div>
</div>
</div>
</html>