Add OpenGraph tags
This commit is contained in:
15
about.php
15
about.php
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('common.php');
|
require_once('common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Daniel - About'); ?></title>
|
<title><?php echo _('Daniel - About'); ?></title>
|
||||||
@ -11,6 +11,19 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/about.php">
|
<link rel="canonical" href="https://danwin1210.de/about.php">
|
||||||
<link rel="alternate" href="https://danwin1210.de/about.php" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/about.php" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="profile">
|
||||||
|
<meta property="profile:first_name" content="Daniel">
|
||||||
|
<meta property="profile:last_name" content="Winzen">
|
||||||
|
<meta property="og:title" content="<?php echo _('Daniel - About'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('About the web developer, sysadmin and privacy enthusiast Daniel Winzen and this site'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/about.php">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('About')); ?>
|
<?php menu(_('About')); ?>
|
||||||
<h2><?php echo _('About me'); ?></h2>
|
<h2><?php echo _('About me'); ?></h2>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('../common.php');
|
require_once('../common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Daniel - Chat'); ?></title>
|
<title><?php echo _('Daniel - Chat'); ?></title>
|
||||||
@ -11,6 +11,17 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/chat/">
|
<link rel="canonical" href="https://danwin1210.de/chat/">
|
||||||
<link rel="alternate" href="https://danwin1210.de/chat/" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/chat/" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:title" content="<?php echo _('Daniel - Chat'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('Daniel\'s Chat - a former darknet chat community'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/chat/">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('Daniel\'s Chat')); ?>
|
<?php menu(_('Daniel\'s Chat')); ?>
|
||||||
<p><?php echo _('After 9 years, I\'m shutting down the chat for good.'); ?></p>
|
<p><?php echo _('After 9 years, I\'m shutting down the chat for good.'); ?></p>
|
||||||
|
@ -92,10 +92,9 @@ function menu(string $title = ''): void
|
|||||||
{
|
{
|
||||||
global $global_style, $language;
|
global $global_style, $language;
|
||||||
echo "<style>$global_style</style>";
|
echo "<style>$global_style</style>";
|
||||||
echo '<input id="burger_check" type="checkbox" hidden>';
|
|
||||||
echo "<header><h1>$title</h1></header>";
|
echo "<header><h1>$title</h1></header>";
|
||||||
echo '<details id="menu">';
|
echo '<details id="menu">';
|
||||||
echo '<summary class="burger_nav" for="burger_check" aria-controls="nav" aria-label="Toggle navigation" tabindex="0"><span class="bar1"></span><span class="bar2"></span><span class="bar3"></span></summary>';
|
echo '<summary class="burger_nav" aria-controls="nav" aria-label="Toggle navigation" tabindex="0"><span class="bar1"></span><span class="bar2"></span><span class="bar3"></span></summary>';
|
||||||
echo '<nav>';
|
echo '<nav>';
|
||||||
if(isset($_SERVER['HTTP_HOST']) && preg_match('/danwin1210\.de$/', $_SERVER['HTTP_HOST'])){
|
if(isset($_SERVER['HTTP_HOST']) && preg_match('/danwin1210\.de$/', $_SERVER['HTTP_HOST'])){
|
||||||
$host='https://danwin1210.de';
|
$host='https://danwin1210.de';
|
||||||
@ -139,5 +138,6 @@ function alt_links(): void
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
echo '<link rel="alternate" href="?lang='.$lang.'" hreflang="'.$lang.'" />';
|
echo '<link rel="alternate" href="?lang='.$lang.'" hreflang="'.$lang.'" />';
|
||||||
|
echo '<meta property="og:locale:alternate" content="'.$data['locale'].'">';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
13
contact.php
13
contact.php
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('common.php');
|
require_once('common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Daniel - Contact'); ?></title>
|
<title><?php echo _('Daniel - Contact'); ?></title>
|
||||||
@ -11,6 +11,17 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/contact.php">
|
<link rel="canonical" href="https://danwin1210.de/contact.php">
|
||||||
<link rel="alternate" href="https://danwin1210.de/contact.php" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/contact.php" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:title" content="<?php echo _('Daniel - Contact'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('Contact Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/contact.php">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('Contact')); ?>
|
<?php menu(_('Contact')); ?>
|
||||||
<p><?php echo _('You can send me a message here. Don\'t forget to leave a contact option, if you want me to answer.'); ?></p>
|
<p><?php echo _('You can send me a message here. Don\'t forget to leave a contact option, if you want me to answer.'); ?></p>
|
||||||
|
BIN
daniel.jpg
Normal file
BIN
daniel.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
13
faq.php
13
faq.php
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('common.php');
|
require_once('common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Daniel - FAQ - Frequently Asked Questions'); ?></title>
|
<title><?php echo _('Daniel - FAQ - Frequently Asked Questions'); ?></title>
|
||||||
@ -10,6 +10,17 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/faq.php">
|
<link rel="canonical" href="https://danwin1210.de/faq.php">
|
||||||
<link rel="alternate" href="https://danwin1210.de/faq.php" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/faq.php" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:title" content="<?php echo _('Daniel - FAQ - Frequently Asked Questions'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('A list of frequently asked questions regarding the services I provide and their answers'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/faq.php">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('FAQ - Frequently Asked Questions')); ?>
|
<?php menu(_('FAQ - Frequently Asked Questions')); ?>
|
||||||
<p><?php echo _('Here you have a list of frequently asked questions regarding the services I provide and their answers.'); ?></p>
|
<p><?php echo _('Here you have a list of frequently asked questions regarding the services I provide and their answers.'); ?></p>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('common.php');
|
require_once('common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('GitHub IPv6 proxy'); ?></title>
|
<title><?php echo _('GitHub IPv6 proxy'); ?></title>
|
||||||
@ -10,6 +10,23 @@ global $language, $dir;
|
|||||||
<meta name="description" content="<?php echo _('GitHub IPv6 proxy allows downloading GitHub repositories on IPv6 only servers'); ?>">
|
<meta name="description" content="<?php echo _('GitHub IPv6 proxy allows downloading GitHub repositories on IPv6 only servers'); ?>">
|
||||||
<link rel="canonical" href="https://danwin1210.de/github-ipv6-proxy.php">
|
<link rel="canonical" href="https://danwin1210.de/github-ipv6-proxy.php">
|
||||||
<link rel="alternate" href="https://danwin1210.de/github-ipv6-proxy.php" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/github-ipv6-proxy.php" hreflang="x-default">
|
||||||
|
<meta property="og:type" content="article">
|
||||||
|
<meta property="article:published_time" content="2022-08-20">
|
||||||
|
<meta property="article:modified_time" content="2022-11-04">
|
||||||
|
<meta property="article:tag" content="IPv6">
|
||||||
|
<meta property="article:tag" content="GitHub">
|
||||||
|
<meta property="article:tag" content="proxy">
|
||||||
|
<meta property="article:section" content="Technology">
|
||||||
|
<meta property="og:title" content="<?php echo _('GitHub IPv6 proxy'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('GitHub IPv6 proxy allows downloading GitHub repositories on IPv6 only servers'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/github-ipv6-proxy.php">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('GitHub IPv6 proxy')); ?>
|
<?php menu(_('GitHub IPv6 proxy')); ?>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('../common.php');
|
require_once('../common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Hosting - Info'); ?></title>
|
<title><?php echo _('Hosting - Info'); ?></title>
|
||||||
@ -11,6 +11,17 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/hosting/">
|
<link rel="canonical" href="https://danwin1210.de/hosting/">
|
||||||
<link rel="alternate" href="https://danwin1210.de/hosting/" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/hosting/" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:title" content="<?php echo _('Hosting - Info'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('Daniel\'s Hosting - a former darknet web hosting service'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/hosting/">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('Hosting - Info')); ?>
|
<?php menu(_('Hosting - Info')); ?>
|
||||||
<p><?php echo _('In March 2020 a hacker deleted all databases related to my hosting, thus I was forced to shut down my hosting service. If you want to contribute or setup your own hosting, check out my open source project at <a href="https://github.com/DanWin/hosting" target="_blank" rel="noopener">https://github.com/DanWin/hosting</a>.'); ?></p>
|
<p><?php echo _('In March 2020 a hacker deleted all databases related to my hosting, thus I was forced to shut down my hosting service. If you want to contribute or setup your own hosting, check out my open source project at <a href="https://github.com/DanWin/hosting" target="_blank" rel="noopener">https://github.com/DanWin/hosting</a>.'); ?></p>
|
||||||
|
13
index.php
13
index.php
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('common.php');
|
require_once('common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Daniel - Home'); ?></title>
|
<title><?php echo _('Daniel - Home'); ?></title>
|
||||||
@ -11,6 +11,17 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/">
|
<link rel="canonical" href="https://danwin1210.de/">
|
||||||
<link rel="alternate" href="https://danwin1210.de/" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:title" content="<?php echo _('Daniel - Home'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('Personal website of Daniel Winzen, the web developer, sysadmin and privacy enthusiast'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('Home')); ?>
|
<?php menu(_('Home')); ?>
|
||||||
<p><?php echo _('Hello, my name is Daniel Winzen, a german web developer and system administrator. This is my personal website, that I develop in my free time. This site is available as <a href="http://danielas3rtn54uwmofdo3x2bsdifr47huasnmbgqzfrec5ubupvtpid.onion">Tor hidden service</a> or via my clearnet proxy <a href="https://danwin1210.de">danwin1210.de</a>. To learn more about me and this site, check <a href="/about.php">the about page</a>.'); ?></p>
|
<p><?php echo _('Hello, my name is Daniel Winzen, a german web developer and system administrator. This is my personal website, that I develop in my free time. This site is available as <a href="http://danielas3rtn54uwmofdo3x2bsdifr47huasnmbgqzfrec5ubupvtpid.onion">Tor hidden service</a> or via my clearnet proxy <a href="https://danwin1210.de">danwin1210.de</a>. To learn more about me and this site, check <a href="/about.php">the about page</a>.'); ?></p>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('common.php');
|
require_once('common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Daniel - New domain'); ?></title>
|
<title><?php echo _('Daniel - New domain'); ?></title>
|
||||||
@ -11,6 +11,19 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/new-domain.php">
|
<link rel="canonical" href="https://danwin1210.de/new-domain.php">
|
||||||
<link rel="alternate" href="https://danwin1210.de/new-domain.php" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/new-domain.php" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="article">
|
||||||
|
<meta property="article:published_time" content="2021-12-02">
|
||||||
|
<meta property="article:modified_time" content="2022-12-25">
|
||||||
|
<meta property="og:title" content="<?php echo _('Daniel - New domain'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('We moved to a brand new domain - migrate your accounts'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/new-domain.php">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('New domain - DanWin1210.Me is now DanWin1210.De')); ?>
|
<?php menu(_('New domain - DanWin1210.Me is now DanWin1210.De')); ?>
|
||||||
<h2><?php echo _('Why this sudden and drastic change?'); ?></h2>
|
<h2><?php echo _('Why this sudden and drastic change?'); ?></h2>
|
||||||
|
13
privacy.php
13
privacy.php
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('common.php');
|
require_once('common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Daniel - Privacy policy'); ?></title>
|
<title><?php echo _('Daniel - Privacy policy'); ?></title>
|
||||||
@ -11,6 +11,17 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/privacy.php">
|
<link rel="canonical" href="https://danwin1210.de/privacy.php">
|
||||||
<link rel="alternate" href="https://danwin1210.de/privacy.php" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/privacy.php" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:title" content="<?php echo _('Daniel - Privacy policy'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('Privacy policy of Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/privacy.php">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('Privacy policy')); ?>
|
<?php menu(_('Privacy policy')); ?>
|
||||||
<p><?php echo _('Data protection is of a particularly high priority for Daniel Winzen. The use of the Internet pages of Daniel Winzen is possible without any indication of personal data. However, if a data subject wants to use services via my website, processing of personal data could become necessary. If the processing of personal data is necessary and there is no statutory basis for such processing, I generally obtain consent from the data subject.'); ?></p>
|
<p><?php echo _('Data protection is of a particularly high priority for Daniel Winzen. The use of the Internet pages of Daniel Winzen is possible without any indication of personal data. However, if a data subject wants to use services via my website, processing of personal data could become necessary. If the processing of personal data is necessary and there is no statutory basis for such processing, I generally obtain consent from the data subject.'); ?></p>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('../common.php');
|
require_once('../common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Daniel - Tutorials'); ?></title>
|
<title><?php echo _('Daniel - Tutorials'); ?></title>
|
||||||
@ -11,6 +11,17 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/tutorials/">
|
<link rel="canonical" href="https://danwin1210.de/tutorials/">
|
||||||
<link rel="alternate" href="https://danwin1210.de/tutorials/" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/tutorials/" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:title" content="<?php echo _('Daniel - Tutorials'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('Various tutorials provided by Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/tutorials/">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('Tutorials')); ?>
|
<?php menu(_('Tutorials')); ?>
|
||||||
<p><?php echo _('Here I upload tutorials that have been asked for a number of times. If you have suggestions on how to improve a tutorial or want me to make one another one, you can <a href="/contact.php">contact me here</a>.'); ?></p>
|
<p><?php echo _('Here I upload tutorials that have been asked for a number of times. If you have suggestions on how to improve a tutorial or want me to make one another one, you can <a href="/contact.php">contact me here</a>.'); ?></p>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once('../../common.php');
|
require_once('../../common.php');
|
||||||
global $language, $dir;
|
global $language, $dir, $locale;
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
<!DOCTYPE html><html lang="<?php echo $language; ?>" dir="<?php echo $dir; ?>"><head>
|
||||||
<title><?php echo _('Tutorials - Torify FTP clients'); ?></title>
|
<title><?php echo _('Tutorials - Torify FTP clients'); ?></title>
|
||||||
@ -11,6 +11,25 @@ global $language, $dir;
|
|||||||
<link rel="canonical" href="https://danwin1210.de/tutorials/torify-ftp/">
|
<link rel="canonical" href="https://danwin1210.de/tutorials/torify-ftp/">
|
||||||
<link rel="alternate" href="https://danwin1210.de/tutorials/torify-ftp/" hreflang="x-default">
|
<link rel="alternate" href="https://danwin1210.de/tutorials/torify-ftp/" hreflang="x-default">
|
||||||
<?php alt_links(); ?>
|
<?php alt_links(); ?>
|
||||||
|
<meta property="og:type" content="article">
|
||||||
|
<meta property="article:published_time" content="2017-10-21">
|
||||||
|
<meta property="article:tag" content="FTP">
|
||||||
|
<meta property="article:tag" content="SFTP">
|
||||||
|
<meta property="article:tag" content="Tor">
|
||||||
|
<meta property="article:tag" content="Proxy">
|
||||||
|
<meta property="article:tag" content="FileZilla">
|
||||||
|
<meta property="article:tag" content="WinSCP">
|
||||||
|
<meta property="article:section" content="Technology">
|
||||||
|
<meta property="og:title" content="<?php echo _('Tutorials - Torify FTP clients'); ?>">
|
||||||
|
<meta property="og:description" content="<?php echo _('This tutorial will show you how to torify FTP clients in the example of FileZilla and WinSCP.'); ?>">
|
||||||
|
<meta property="og:image" content="https://danwin1210.de/daniel.jpg">
|
||||||
|
<meta property="og:image:type" content="image/jpeg">
|
||||||
|
<meta property="og:image:height" content="1000">
|
||||||
|
<meta property="og:image:width" content="1000">
|
||||||
|
<meta property="og:image:alt" content="<?php echo _('An avatar representing Daniel Winzen'); ?>">
|
||||||
|
<meta property="og:url" content="https://danwin1210.de/tutorials/torify-ftp/">
|
||||||
|
<meta property="og:locale" content="<?php echo $locale; ?>">
|
||||||
|
<meta property="og:site_name" content="<?php echo _('Daniel'); ?>">
|
||||||
<style>img{max-width:100%}</style>
|
<style>img{max-width:100%}</style>
|
||||||
</head><body>
|
</head><body>
|
||||||
<?php menu(_('Tutorials - Torify FTP clients')); ?>
|
<?php menu(_('Tutorials - Torify FTP clients')); ?>
|
||||||
|
Reference in New Issue
Block a user