-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
65 lines (59 loc) · 2.58 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<title>Get in contact</title>
<script type="text/javascript" src="js/bootstrap.js"></script>
<link rel="shortcut icon" href="img/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" href="css/bootstrap.css" rel="stylesheet">
<link type="text/css" href="css/bootstrap-responsive.css" rel="stylesheet">
<link type="text/css" href="css/style.css" rel="stylesheet">
</head>
<body class="container">
<header class="row-fluid">
<div class="span12 page-header ">
<h1 class="centered-text">Fer Perales
<small>contact</small>
</h1>
</div>
</header>
<section class="row well">
<div class="span12">
<p>
First of all, I appreciate your taking the time to visit my webpage.
</p>
<p>
If you want me to colaborate in your project, you can send me and email, add me to gTalk or add me to Skype to make an agreement.
I'd love to work with you ;)
</p>
<script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js"></script>
<p>
<a href="skype:ferperalesm?chat"><img src="http://download.skype.com/share/skypebuttons/buttons/chat_blue_transparent_97x23.png" style="border: none;" width="97" height="23" alt="Chat with me" /></a>
</p>
<p>
The easiest way to get in contact is a commet via disqus in the form below
</p>
<p><div id="disqus_thread"></div></p>
<p>
<a href="index.php">Go back to main page</a>
</p>
</div>
</section>
<?php
$filename = new SplFileInfo(__FILE__);
require 'php/footer.php';
?>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'ferperalesnet'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</body>
</html>