-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdonate.php
More file actions
59 lines (48 loc) · 2.01 KB
/
donate.php
File metadata and controls
59 lines (48 loc) · 2.01 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
<?php
/*
* Template Name: Donate
* */
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php get_template_part('head'); ?>
</head>
<body>
<?php get_header(); ?>
<div id="container">
<div id="page">
<div id="wp-page">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<div id="content"><?php the_content(); ?></div>
<div id="donations">
<div class="method">
<h2>Flattr</h2>
<a class="FlattrButton" style="display:none;" href="http://turpial.org.ve"></a>
<noscript>
<a href="http://flattr.com/thing/452623/Turpial-Website" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a>
</noscript>
</div>
<div class="method">
<h2>Paypal</h2>
<a id="paypal-donate" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3QDYV3JLXPQ7U"><img src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" alt="" /></a>
</div>
<div class="clearbox"></div>
<h4>Or just support our sponsors ;)</h4>
</div>
<?php endwhile; ?>
<?php else : ?>
<p>We couldn't find the page you are looking for</p>
<?php endif; ?>
</div>
<?php get_template_part('ads_h_display'); ?>
</div>
</div>
<div class="push"></div>
<?php get_footer(); ?>
</body>
</html>