mirror of
https://github.com/kirsle/kirsle.net
synced 2024-11-14 04:49:29 +00:00
17 lines
303 B
Plaintext
17 lines
303 B
Plaintext
{{ define "title" }}Google+{{ end }}
|
|
{{ define "content" }}
|
|
<h1>Google+</h1>
|
|
|
|
{{ $to := "https://plus.google.com/+NoahPetherbridge" }}
|
|
|
|
Redirecting to <a href="{{ $to }}">{{ $to }}</a>
|
|
|
|
<script>
|
|
(function() {
|
|
setTimeout(function() {
|
|
window.location = "{{ $to }}";
|
|
}, 200);
|
|
})();
|
|
</script>
|
|
{{ end }}
|