diff options
author | Michał Sapka <michal@sapka.me> | 2023-01-02 22:15:10 +0100 |
---|---|---|
committer | Michał Sapka <michal@sapka.me> | 2023-01-02 22:15:10 +0100 |
commit | 98c04aa1e19e9391a19daf903a024e7ebeaeb36b (patch) | |
tree | fbc4a9729a479331f0b33fb613250dad619c95ec | |
parent | 679e6588d1ef6709f9e579f8ab2fa1b3ad2ac9d8 (diff) |
feat: blank based on memes
545 files changed, 19482 insertions, 0 deletions
@@ -0,0 +1,9 @@ +--- +title: "No Ragrets" +kind: "meme" +date: 2022-12-30T22:42:16+01:00 +draft: false +image: "no-ragrets.jpg" +tags: ['sfw'] +--- + diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..cd3ecf2 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,8 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +category: "blog" +date: {{ .Date }} +draft: false +tags: [] +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..f4e80d6 --- /dev/null +++ b/config.toml @@ -0,0 +1,12 @@ +baseURL = 'https://memes.sapka.me' +languageCode = 'en-us' +title = "Michal's based meme collection" + +[outputFormats.TXT] +mediaType = "text/plain" +sufix = "txt" +isPlainText = true + +[outputs] + home = [ "HTML", "RSS", "TXT" ] + diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..f8959f2 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,7 @@ +--- +title: "" +date: 2022-12-28T23:42:51+01:00 +draft: false +tags: [] +--- + diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..b0bfc6f --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,80 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE>{{ block "title" . }} + {{ .Site.Title }} + {{ end }}</TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + {{- $image := resources.Get "/icons/apple-touch-icon.png"}} + <link rel="apple-touch-icon" sizes="180x180" href="{{ $image.Permalink }}"> + {{- $image := resources.Get "/icons/favicon-32x32.png" }} + <link rel="icon" type="image/png" sizes="32x32" href="{{ $image.Permalink }}"> + {{- $image := resources.Get "/icons/favicon-16x16.png" }} + <link rel="icon" type="image/png" sizes="16x16" href="{{ $image.Permalink }}"> + + <meta property="og:title" content="{{ .Page.Title }}" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="{{ .Page.Permalink }}" /> + {{- $imageUrl := default "logo.png" .Params.image }} + {{- $image := resources.Get $imageUrl }} + <meta property="og:image" content="{{ $image.Permalink }}" /> + + <meta name="twitter:title" content="{{ .Page.Title }}"> + <meta name="twitter:image" content="{{ $image.Permalink }}"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="{{ .Site.BaseURL }}"> + <link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + {{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">{{end}} + </HEAD> + <BODY> + {{ block "header" . }} + <HEADER> + {{ $image := resources.Get "logo.png" }} + {{ $image := $image.Resize "x45" }} + <a href="/"> + <img alt="logo" src="{{ $image.Permalink }}" width={{$image.Width}} height={{$image.Height}}/> + <div> + <h1>{{ .Site.Title }}</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + {{ end }} + <MAIN> + {{ block "page-title" . }} + <h2> {{ .Page.Title }}</h2> + {{ end }} + {{ block "main" . }} + {{ end }} + </MAIN> + + {{ block "FOOTER" . }} + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + {{ $image := resources.Get "rss.png" }} + {{ $image := $image.Resize "x25" }} + <img alt="rss" src="{{ $image.Permalink }}" width={{$image.Width}} height={{$image.Height}}/> + </a> + </div> + + </FOOTER> + {{ end }} + </BODY> +</HTML> diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..cc3addd --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,12 @@ +{{ define "main" }} + {{ range where .Pages "Params.category" "meme"}} + <article class="list"> + <a href="{{ .RelPermalink }}"> + {{ $imageUrl := .Param "image" }} + {{ $image := resources.Get $imageUrl }} + {{ $image := $image.Resize "350x" }} + <img alt="{{ .Param "title"}}" src="{{ $image.Permalink }}" width={{ $image.Width }} height={{ $image.Height }}/> + </a> + </article> + {{ end }} +{{ end }} diff --git a/layouts/_default/list.txt b/layouts/_default/list.txt new file mode 100644 index 0000000..047ea33 --- /dev/null +++ b/layouts/_default/list.txt @@ -0,0 +1,5 @@ +{{- range where .Pages "Params.category" "meme"}} + {{- $imageUrl := .Param "image" }} + {{- $image := resources.Get $imageUrl }} + {{- $image.Permalink }} +{{ end }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..47ec310 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,33 @@ +{{ define "title" }} +{{ end }} + +{{ define "main" }} +{{ $imageUrl := .Params.image }} +{{ $image := resources.Get $imageUrl }} +{{ $image := $image.Resize "790x" }} +<img alt="{{ .Params.title }}" src="{{ $image.Permalink }}" width={{ $image.Width }} height={{ $image.Height }}/><BR/> +<hr/> +added on {{ .PublishDate.Format "January 2, 2006" }} +{{- if isset .Params "tags" -}} + {{- $tagsLen := len .Params.tags -}} + {{- if gt $tagsLen 0 -}} + with tags: + {{- range $k, $v := .Params.tags -}} + {{- $url := printf "tags/%s" (. | urlize | lower) -}} + <a href="{{ $url | absURL }}"> {{ . | title }}</a> + {{- if lt $k (sub $tagsLen 1) }} · {{ end -}} + {{- end -}} + </div> + {{- end -}} +{{- end }} +<hr/> + +{{ if or .Next .Prev -}} +<div> + {{- with .Prev }} <a class="prev-link" href="{{ .RelPermalink}}"> ← Previous</a> {{ end -}} + {{- with .Next -}}<a class="next-link" href="{{ .RelPermalink}}">Next →</a> {{ end -}} +</div> +{{ end -}} + +{{ end }} + diff --git a/public/30-year-old-boomer.jpg b/public/30-year-old-boomer.jpg Binary files differnew file mode 100644 index 0000000..53581dc --- /dev/null +++ b/public/30-year-old-boomer.jpg diff --git a/public/30-year-old-boomer/index.html b/public/30-year-old-boomer/index.html new file mode 100644 index 0000000..70555a1 --- /dev/null +++ b/public/30-year-old-boomer/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="30 Year Old Boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/30-year-old-boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/30-year-old-boomer.jpg" /> + + <meta name="twitter:title" content="30 Year Old Boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/30-year-old-boomer.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, boomer, wojak"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> 30 Year Old Boomer</h2> + + + + + +<img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg" width=790 height=474/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/boomer"> Boomer</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a></div> +<hr/> + +<div> <a class="prev-link" href="/lol-wut/"> ← Previous</a> <a class="next-link" href="/shit-im-into-it/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg b/public/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..f67fb7f --- /dev/null +++ b/public/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg diff --git a/public/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg b/public/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e055007 --- /dev/null +++ b/public/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg diff --git a/public/categories/index.html b/public/categories/index.html new file mode 100644 index 0000000..65f8a3e --- /dev/null +++ b/public/categories/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Categories" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/categories/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Categories"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Categories</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..7b9d73d --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Categories on Michal's based meme collection</title> + <link>https://memes.sapka.me/categories/</link> + <description>Recent content in Categories on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language><atom:link href="https://memes.sapka.me/categories/index.xml" rel="self" type="application/rss+xml" /> + </channel> +</rss> diff --git a/public/challenging-wank.gif b/public/challenging-wank.gif Binary files differnew file mode 100644 index 0000000..2c2322c --- /dev/null +++ b/public/challenging-wank.gif diff --git a/public/challenging-wank/index.html b/public/challenging-wank/index.html new file mode 100644 index 0000000..e539dc7 --- /dev/null +++ b/public/challenging-wank/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Challenging Wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/challenging-wank.gif" /> + + <meta name="twitter:title" content="Challenging Wank"> + <meta name="twitter:image" content="https://memes.sapka.me/challenging-wank.gif"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, challenging-wank, animated"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Challenging Wank</h2> + + + + + +<img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif" width=790 height=790/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/challenging-wank"> Challenging-Wank</a> · <a href="https://memes.sapka.me/tags/animated"> Animated</a></div> +<hr/> + +<div> <a class="prev-link" href="/no-ragrets/"> ← Previous</a> <a class="next-link" href="/fuck-yea/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif b/public/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..29efcaa --- /dev/null +++ b/public/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif diff --git a/public/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif b/public/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..221331a --- /dev/null +++ b/public/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif diff --git a/public/deploy.sh b/public/deploy.sh new file mode 100755 index 0000000..c2953b4 --- /dev/null +++ b/public/deploy.sh @@ -0,0 +1 @@ +rsync -rtvzP . root@143.42.27.127:/var/www/memes/ diff --git a/public/favicon.ico b/public/favicon.ico Binary files differnew file mode 100644 index 0000000..36de9d2 --- /dev/null +++ b/public/favicon.ico diff --git a/public/forever-alone.jpg b/public/forever-alone.jpg Binary files differnew file mode 100644 index 0000000..07431c4 --- /dev/null +++ b/public/forever-alone.jpg diff --git a/public/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg b/public/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..7a8eaf9 --- /dev/null +++ b/public/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg diff --git a/public/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg b/public/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..712f113 --- /dev/null +++ b/public/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg diff --git a/public/forver-alone/index.html b/public/forver-alone/index.html new file mode 100644 index 0000000..0ba9242 --- /dev/null +++ b/public/forver-alone/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Forver Alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/forver-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/forever-alone.jpg" /> + + <meta name="twitter:title" content="Forver Alone"> + <meta name="twitter:image" content="https://memes.sapka.me/forever-alone.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, forever-alone"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Forver Alone</h2> + + + + + +<img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg" width=790 height=790/><BR/> +<hr/> +added on December 29, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/forever-alone"> Forever-Alone</a></div> +<hr/> + +<div> <a class="prev-link" href="/orly/"> ← Previous</a> <a class="next-link" href="/no-ragrets/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/fuck-yea.jpg b/public/fuck-yea.jpg Binary files differnew file mode 100644 index 0000000..762d0a4 --- /dev/null +++ b/public/fuck-yea.jpg diff --git a/public/fuck-yea/index.html b/public/fuck-yea/index.html new file mode 100644 index 0000000..8170a58 --- /dev/null +++ b/public/fuck-yea/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Fuck Yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/fuck-yea.jpg" /> + + <meta name="twitter:title" content="Fuck Yea"> + <meta name="twitter:image" content="https://memes.sapka.me/fuck-yea.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, fuck-yea"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Fuck Yea</h2> + + + + + +<img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/fuck-yea"> Fuck-Yea</a></div> +<hr/> + +<div> <a class="prev-link" href="/challenging-wank/"> ← Previous</a> <a class="next-link" href="/lol-wut/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg b/public/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..66d68ca --- /dev/null +++ b/public/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg diff --git a/public/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg b/public/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..d72082d --- /dev/null +++ b/public/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg diff --git a/public/i-know-that-feel-bro.png b/public/i-know-that-feel-bro.png Binary files differnew file mode 100644 index 0000000..09572f9 --- /dev/null +++ b/public/i-know-that-feel-bro.png diff --git a/public/i-know-that-feel-bro/index.html b/public/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..ee3e57b --- /dev/null +++ b/public/i-know-that-feel-bro/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="I Know That Feel Bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/i-know-that-feel-bro.png" /> + + <meta name="twitter:title" content="I Know That Feel Bro"> + <meta name="twitter:image" content="https://memes.sapka.me/i-know-that-feel-bro.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, wojak, i-know-that-feel-bro"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> I Know That Feel Bro</h2> + + + + + +<img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png" width=790 height=728/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a> · <a href="https://memes.sapka.me/tags/i-know-that-feel-bro"> I-Know-That-Feel-Bro</a></div> +<hr/> + +<div> <a class="prev-link" href="/shit-im-into-it/"> ← Previous</a> <a class="next-link" href="/the-risk-was-calculated/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png b/public/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..93507d6 --- /dev/null +++ b/public/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png diff --git a/public/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png b/public/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..949dbf0 --- /dev/null +++ b/public/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png diff --git a/public/icons/apple-touch-icon.png b/public/icons/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..44691cb --- /dev/null +++ b/public/icons/apple-touch-icon.png diff --git a/public/icons/favicon-16x16.png b/public/icons/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..c51b181 --- /dev/null +++ b/public/icons/favicon-16x16.png diff --git a/public/icons/favicon-32x32.png b/public/icons/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..cb71cac --- /dev/null +++ b/public/icons/favicon-32x32.png diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..43bc4fb --- /dev/null +++ b/public/index.html @@ -0,0 +1,167 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <meta name="generator" content="Hugo 0.92.2" /> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content=""> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content=""> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> </h2> + + + + <article class="list"> + <a href="/the-risk-was-calculated/"> + + + + <img alt="The Risk Was Calculated" src="https://memes.sapka.me/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_350x0_resize_q75_box.jpg" width=350 height=247/> + </a> + </article> + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/index.txt b/public/index.txt new file mode 100644 index 0000000..c7fc0f3 --- /dev/null +++ b/public/index.txt @@ -0,0 +1,11 @@ +https://memes.sapka.me/the-risk-was-calculated.jpg +https://memes.sapka.me/i-know-that-feel-bro.png +https://memes.sapka.me/shit-im-into-it.jpg +https://memes.sapka.me/30-year-old-boomer.jpg +https://memes.sapka.me/lol-wut.jpg +https://memes.sapka.me/fuck-yea.jpg +https://memes.sapka.me/challenging-wank.gif +https://memes.sapka.me/no-ragrets.jpg +https://memes.sapka.me/forever-alone.jpg +https://memes.sapka.me/orly.jpg + diff --git a/public/index.xml b/public/index.xml new file mode 100644 index 0000000..af87f57 --- /dev/null +++ b/public/index.xml @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Michal's based meme collection</title> + <link>https://memes.sapka.me/</link> + <description>Recent content on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:42:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>The Risk Was Calculated</title> + <link>https://memes.sapka.me/the-risk-was-calculated/</link> + <pubDate>Mon, 02 Jan 2023 22:08:38 +0100</pubDate> + + <guid>https://memes.sapka.me/the-risk-was-calculated/</guid> + <description></description> + </item> + + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/logo.png b/public/logo.png Binary files differnew file mode 100644 index 0000000..49d5a0d --- /dev/null +++ b/public/logo.png diff --git a/public/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png b/public/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png Binary files differnew file mode 100644 index 0000000..b303df5 --- /dev/null +++ b/public/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png diff --git a/public/lol-wut.jpg b/public/lol-wut.jpg Binary files differnew file mode 100644 index 0000000..703d21b --- /dev/null +++ b/public/lol-wut.jpg diff --git a/public/lol-wut/index.html b/public/lol-wut/index.html new file mode 100644 index 0000000..84cf150 --- /dev/null +++ b/public/lol-wut/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Lol Wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/lol-wut.jpg" /> + + <meta name="twitter:title" content="Lol Wut"> + <meta name="twitter:image" content="https://memes.sapka.me/lol-wut.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, lol-wut"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Lol Wut</h2> + + + + + +<img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg" width=790 height=880/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/lol-wut"> Lol-Wut</a></div> +<hr/> + +<div> <a class="prev-link" href="/fuck-yea/"> ← Previous</a> <a class="next-link" href="/30-year-old-boomer/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg b/public/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..560c47e --- /dev/null +++ b/public/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg diff --git a/public/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg b/public/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..5801f43 --- /dev/null +++ b/public/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg diff --git a/public/no-ragrets.jpg b/public/no-ragrets.jpg Binary files differnew file mode 100644 index 0000000..2172137 --- /dev/null +++ b/public/no-ragrets.jpg diff --git a/public/no-ragrets/index.html b/public/no-ragrets/index.html new file mode 100644 index 0000000..b8c6100 --- /dev/null +++ b/public/no-ragrets/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="No Ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/no-ragrets.jpg" /> + + <meta name="twitter:title" content="No Ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/no-ragrets.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, no-ragrets"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> No Ragrets</h2> + + + + + +<img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg" width=790 height=598/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/no-ragrets"> No-Ragrets</a></div> +<hr/> + +<div> <a class="prev-link" href="/forver-alone/"> ← Previous</a> <a class="next-link" href="/challenging-wank/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg b/public/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..109ecb6 --- /dev/null +++ b/public/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg diff --git a/public/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg b/public/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..8cef2e8 --- /dev/null +++ b/public/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg diff --git a/public/orly.jpg b/public/orly.jpg Binary files differnew file mode 100644 index 0000000..8dba518 --- /dev/null +++ b/public/orly.jpg diff --git a/public/orly/index.html b/public/orly/index.html new file mode 100644 index 0000000..7bc41b6 --- /dev/null +++ b/public/orly/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/orly.jpg" /> + + <meta name="twitter:title" content="Orly"> + <meta name="twitter:image" content="https://memes.sapka.me/orly.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, orly"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Orly</h2> + + + + + +<img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 28, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/orly"> Orly</a></div> +<hr/> + +<div><a class="next-link" href="/forver-alone/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg b/public/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..eabb441 --- /dev/null +++ b/public/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg diff --git a/public/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg b/public/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e623e14 --- /dev/null +++ b/public/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/30-year-old-boomer.jpg b/public/root@143.42.27.127/30-year-old-boomer.jpg Binary files differnew file mode 100644 index 0000000..53581dc --- /dev/null +++ b/public/root@143.42.27.127/30-year-old-boomer.jpg diff --git a/public/root@143.42.27.127/30-year-old-boomer/index.html b/public/root@143.42.27.127/30-year-old-boomer/index.html new file mode 100644 index 0000000..70555a1 --- /dev/null +++ b/public/root@143.42.27.127/30-year-old-boomer/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="30 Year Old Boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/30-year-old-boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/30-year-old-boomer.jpg" /> + + <meta name="twitter:title" content="30 Year Old Boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/30-year-old-boomer.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, boomer, wojak"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> 30 Year Old Boomer</h2> + + + + + +<img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg" width=790 height=474/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/boomer"> Boomer</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a></div> +<hr/> + +<div> <a class="prev-link" href="/lol-wut/"> ← Previous</a> <a class="next-link" href="/shit-im-into-it/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..f67fb7f --- /dev/null +++ b/public/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e055007 --- /dev/null +++ b/public/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/categories/index.html b/public/root@143.42.27.127/categories/index.html new file mode 100644 index 0000000..65f8a3e --- /dev/null +++ b/public/root@143.42.27.127/categories/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Categories" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/categories/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Categories"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Categories</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/categories/index.xml b/public/root@143.42.27.127/categories/index.xml new file mode 100644 index 0000000..7b9d73d --- /dev/null +++ b/public/root@143.42.27.127/categories/index.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Categories on Michal's based meme collection</title> + <link>https://memes.sapka.me/categories/</link> + <description>Recent content in Categories on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language><atom:link href="https://memes.sapka.me/categories/index.xml" rel="self" type="application/rss+xml" /> + </channel> +</rss> diff --git a/public/root@143.42.27.127/challenging-wank.gif b/public/root@143.42.27.127/challenging-wank.gif Binary files differnew file mode 100644 index 0000000..2c2322c --- /dev/null +++ b/public/root@143.42.27.127/challenging-wank.gif diff --git a/public/root@143.42.27.127/challenging-wank/index.html b/public/root@143.42.27.127/challenging-wank/index.html new file mode 100644 index 0000000..e539dc7 --- /dev/null +++ b/public/root@143.42.27.127/challenging-wank/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Challenging Wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/challenging-wank.gif" /> + + <meta name="twitter:title" content="Challenging Wank"> + <meta name="twitter:image" content="https://memes.sapka.me/challenging-wank.gif"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, challenging-wank, animated"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Challenging Wank</h2> + + + + + +<img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif" width=790 height=790/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/challenging-wank"> Challenging-Wank</a> · <a href="https://memes.sapka.me/tags/animated"> Animated</a></div> +<hr/> + +<div> <a class="prev-link" href="/no-ragrets/"> ← Previous</a> <a class="next-link" href="/fuck-yea/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif b/public/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..29efcaa --- /dev/null +++ b/public/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif diff --git a/public/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif b/public/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..221331a --- /dev/null +++ b/public/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif diff --git a/public/root@143.42.27.127/deploy.sh b/public/root@143.42.27.127/deploy.sh new file mode 100755 index 0000000..98af377 --- /dev/null +++ b/public/root@143.42.27.127/deploy.sh @@ -0,0 +1 @@ +rsync -rtvzP . root@143.42.27.127 diff --git a/public/root@143.42.27.127/favicon.ico b/public/root@143.42.27.127/favicon.ico Binary files differnew file mode 100644 index 0000000..36de9d2 --- /dev/null +++ b/public/root@143.42.27.127/favicon.ico diff --git a/public/root@143.42.27.127/forever-alone.jpg b/public/root@143.42.27.127/forever-alone.jpg Binary files differnew file mode 100644 index 0000000..07431c4 --- /dev/null +++ b/public/root@143.42.27.127/forever-alone.jpg diff --git a/public/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..7a8eaf9 --- /dev/null +++ b/public/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..712f113 --- /dev/null +++ b/public/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/forver-alone/index.html b/public/root@143.42.27.127/forver-alone/index.html new file mode 100644 index 0000000..0ba9242 --- /dev/null +++ b/public/root@143.42.27.127/forver-alone/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Forver Alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/forver-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/forever-alone.jpg" /> + + <meta name="twitter:title" content="Forver Alone"> + <meta name="twitter:image" content="https://memes.sapka.me/forever-alone.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, forever-alone"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Forver Alone</h2> + + + + + +<img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg" width=790 height=790/><BR/> +<hr/> +added on December 29, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/forever-alone"> Forever-Alone</a></div> +<hr/> + +<div> <a class="prev-link" href="/orly/"> ← Previous</a> <a class="next-link" href="/no-ragrets/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/fuck-yea.jpg b/public/root@143.42.27.127/fuck-yea.jpg Binary files differnew file mode 100644 index 0000000..762d0a4 --- /dev/null +++ b/public/root@143.42.27.127/fuck-yea.jpg diff --git a/public/root@143.42.27.127/fuck-yea/index.html b/public/root@143.42.27.127/fuck-yea/index.html new file mode 100644 index 0000000..8170a58 --- /dev/null +++ b/public/root@143.42.27.127/fuck-yea/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Fuck Yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/fuck-yea.jpg" /> + + <meta name="twitter:title" content="Fuck Yea"> + <meta name="twitter:image" content="https://memes.sapka.me/fuck-yea.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, fuck-yea"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Fuck Yea</h2> + + + + + +<img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/fuck-yea"> Fuck-Yea</a></div> +<hr/> + +<div> <a class="prev-link" href="/challenging-wank/"> ← Previous</a> <a class="next-link" href="/lol-wut/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..66d68ca --- /dev/null +++ b/public/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..d72082d --- /dev/null +++ b/public/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/i-know-that-feel-bro.png b/public/root@143.42.27.127/i-know-that-feel-bro.png Binary files differnew file mode 100644 index 0000000..09572f9 --- /dev/null +++ b/public/root@143.42.27.127/i-know-that-feel-bro.png diff --git a/public/root@143.42.27.127/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..0827fac --- /dev/null +++ b/public/root@143.42.27.127/i-know-that-feel-bro/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="I Know That Feel Bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/i-know-that-feel-bro.png" /> + + <meta name="twitter:title" content="I Know That Feel Bro"> + <meta name="twitter:image" content="https://memes.sapka.me/i-know-that-feel-bro.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, wojak, i-know-that-feel-bro"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> I Know That Feel Bro</h2> + + + + + +<img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png" width=790 height=728/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a> · <a href="https://memes.sapka.me/tags/i-know-that-feel-bro"> I-Know-That-Feel-Bro</a></div> +<hr/> + +<div> <a class="prev-link" href="/shit-im-into-it/"> ← Previous</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png b/public/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..93507d6 --- /dev/null +++ b/public/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png diff --git a/public/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png b/public/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..949dbf0 --- /dev/null +++ b/public/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png diff --git a/public/root@143.42.27.127/icons/apple-touch-icon.png b/public/root@143.42.27.127/icons/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..44691cb --- /dev/null +++ b/public/root@143.42.27.127/icons/apple-touch-icon.png diff --git a/public/root@143.42.27.127/icons/favicon-16x16.png b/public/root@143.42.27.127/icons/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..c51b181 --- /dev/null +++ b/public/root@143.42.27.127/icons/favicon-16x16.png diff --git a/public/root@143.42.27.127/icons/favicon-32x32.png b/public/root@143.42.27.127/icons/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..cb71cac --- /dev/null +++ b/public/root@143.42.27.127/icons/favicon-32x32.png diff --git a/public/root@143.42.27.127/index.html b/public/root@143.42.27.127/index.html new file mode 100644 index 0000000..664b54a --- /dev/null +++ b/public/root@143.42.27.127/index.html @@ -0,0 +1,158 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <meta name="generator" content="Hugo 0.92.2" /> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content=""> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content=""> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> </h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/index.txt b/public/root@143.42.27.127/index.txt new file mode 100644 index 0000000..30fb8cc --- /dev/null +++ b/public/root@143.42.27.127/index.txt @@ -0,0 +1,10 @@ +https://memes.sapka.me/i-know-that-feel-bro.png +https://memes.sapka.me/shit-im-into-it.jpg +https://memes.sapka.me/30-year-old-boomer.jpg +https://memes.sapka.me/lol-wut.jpg +https://memes.sapka.me/fuck-yea.jpg +https://memes.sapka.me/challenging-wank.gif +https://memes.sapka.me/no-ragrets.jpg +https://memes.sapka.me/forever-alone.jpg +https://memes.sapka.me/orly.jpg + diff --git a/public/root@143.42.27.127/index.xml b/public/root@143.42.27.127/index.xml new file mode 100644 index 0000000..513b060 --- /dev/null +++ b/public/root@143.42.27.127/index.xml @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Michal's based meme collection</title> + <link>https://memes.sapka.me/</link> + <description>Recent content on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:42:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/logo.png b/public/root@143.42.27.127/logo.png Binary files differnew file mode 100644 index 0000000..49d5a0d --- /dev/null +++ b/public/root@143.42.27.127/logo.png diff --git a/public/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png b/public/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png Binary files differnew file mode 100644 index 0000000..b303df5 --- /dev/null +++ b/public/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png diff --git a/public/root@143.42.27.127/lol-wut.jpg b/public/root@143.42.27.127/lol-wut.jpg Binary files differnew file mode 100644 index 0000000..703d21b --- /dev/null +++ b/public/root@143.42.27.127/lol-wut.jpg diff --git a/public/root@143.42.27.127/lol-wut/index.html b/public/root@143.42.27.127/lol-wut/index.html new file mode 100644 index 0000000..84cf150 --- /dev/null +++ b/public/root@143.42.27.127/lol-wut/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Lol Wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/lol-wut.jpg" /> + + <meta name="twitter:title" content="Lol Wut"> + <meta name="twitter:image" content="https://memes.sapka.me/lol-wut.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, lol-wut"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Lol Wut</h2> + + + + + +<img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg" width=790 height=880/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/lol-wut"> Lol-Wut</a></div> +<hr/> + +<div> <a class="prev-link" href="/fuck-yea/"> ← Previous</a> <a class="next-link" href="/30-year-old-boomer/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..560c47e --- /dev/null +++ b/public/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..5801f43 --- /dev/null +++ b/public/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/no-ragrets.jpg b/public/root@143.42.27.127/no-ragrets.jpg Binary files differnew file mode 100644 index 0000000..2172137 --- /dev/null +++ b/public/root@143.42.27.127/no-ragrets.jpg diff --git a/public/root@143.42.27.127/no-ragrets/index.html b/public/root@143.42.27.127/no-ragrets/index.html new file mode 100644 index 0000000..b8c6100 --- /dev/null +++ b/public/root@143.42.27.127/no-ragrets/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="No Ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/no-ragrets.jpg" /> + + <meta name="twitter:title" content="No Ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/no-ragrets.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, no-ragrets"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> No Ragrets</h2> + + + + + +<img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg" width=790 height=598/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/no-ragrets"> No-Ragrets</a></div> +<hr/> + +<div> <a class="prev-link" href="/forver-alone/"> ← Previous</a> <a class="next-link" href="/challenging-wank/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..109ecb6 --- /dev/null +++ b/public/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..8cef2e8 --- /dev/null +++ b/public/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/orly.jpg b/public/root@143.42.27.127/orly.jpg Binary files differnew file mode 100644 index 0000000..8dba518 --- /dev/null +++ b/public/root@143.42.27.127/orly.jpg diff --git a/public/root@143.42.27.127/orly/index.html b/public/root@143.42.27.127/orly/index.html new file mode 100644 index 0000000..7bc41b6 --- /dev/null +++ b/public/root@143.42.27.127/orly/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/orly.jpg" /> + + <meta name="twitter:title" content="Orly"> + <meta name="twitter:image" content="https://memes.sapka.me/orly.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, orly"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Orly</h2> + + + + + +<img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 28, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/orly"> Orly</a></div> +<hr/> + +<div><a class="next-link" href="/forver-alone/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..eabb441 --- /dev/null +++ b/public/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e623e14 --- /dev/null +++ b/public/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg b/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg Binary files differnew file mode 100644 index 0000000..53581dc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html b/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html new file mode 100644 index 0000000..70555a1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="30 Year Old Boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/30-year-old-boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/30-year-old-boomer.jpg" /> + + <meta name="twitter:title" content="30 Year Old Boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/30-year-old-boomer.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, boomer, wojak"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> 30 Year Old Boomer</h2> + + + + + +<img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg" width=790 height=474/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/boomer"> Boomer</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a></div> +<hr/> + +<div> <a class="prev-link" href="/lol-wut/"> ← Previous</a> <a class="next-link" href="/shit-im-into-it/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..f67fb7f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e055007 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/categories/index.html b/public/root@143.42.27.127/root@143.42.27.127/categories/index.html new file mode 100644 index 0000000..65f8a3e --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/categories/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Categories" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/categories/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Categories"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Categories</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/categories/index.xml b/public/root@143.42.27.127/root@143.42.27.127/categories/index.xml new file mode 100644 index 0000000..7b9d73d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/categories/index.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Categories on Michal's based meme collection</title> + <link>https://memes.sapka.me/categories/</link> + <description>Recent content in Categories on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language><atom:link href="https://memes.sapka.me/categories/index.xml" rel="self" type="application/rss+xml" /> + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif b/public/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif Binary files differnew file mode 100644 index 0000000..2c2322c --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html b/public/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html new file mode 100644 index 0000000..e539dc7 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Challenging Wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/challenging-wank.gif" /> + + <meta name="twitter:title" content="Challenging Wank"> + <meta name="twitter:image" content="https://memes.sapka.me/challenging-wank.gif"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, challenging-wank, animated"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Challenging Wank</h2> + + + + + +<img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif" width=790 height=790/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/challenging-wank"> Challenging-Wank</a> · <a href="https://memes.sapka.me/tags/animated"> Animated</a></div> +<hr/> + +<div> <a class="prev-link" href="/no-ragrets/"> ← Previous</a> <a class="next-link" href="/fuck-yea/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif b/public/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..29efcaa --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif b/public/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..221331a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/deploy.sh b/public/root@143.42.27.127/root@143.42.27.127/deploy.sh new file mode 100755 index 0000000..98af377 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/deploy.sh @@ -0,0 +1 @@ +rsync -rtvzP . root@143.42.27.127 diff --git a/public/root@143.42.27.127/root@143.42.27.127/favicon.ico b/public/root@143.42.27.127/root@143.42.27.127/favicon.ico Binary files differnew file mode 100644 index 0000000..36de9d2 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/favicon.ico diff --git a/public/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg b/public/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg Binary files differnew file mode 100644 index 0000000..07431c4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..7a8eaf9 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..712f113 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html new file mode 100644 index 0000000..0ba9242 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Forver Alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/forver-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/forever-alone.jpg" /> + + <meta name="twitter:title" content="Forver Alone"> + <meta name="twitter:image" content="https://memes.sapka.me/forever-alone.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, forever-alone"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Forver Alone</h2> + + + + + +<img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg" width=790 height=790/><BR/> +<hr/> +added on December 29, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/forever-alone"> Forever-Alone</a></div> +<hr/> + +<div> <a class="prev-link" href="/orly/"> ← Previous</a> <a class="next-link" href="/no-ragrets/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg b/public/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg Binary files differnew file mode 100644 index 0000000..762d0a4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html b/public/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html new file mode 100644 index 0000000..8170a58 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Fuck Yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/fuck-yea.jpg" /> + + <meta name="twitter:title" content="Fuck Yea"> + <meta name="twitter:image" content="https://memes.sapka.me/fuck-yea.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, fuck-yea"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Fuck Yea</h2> + + + + + +<img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/fuck-yea"> Fuck-Yea</a></div> +<hr/> + +<div> <a class="prev-link" href="/challenging-wank/"> ← Previous</a> <a class="next-link" href="/lol-wut/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..66d68ca --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..d72082d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png b/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png Binary files differnew file mode 100644 index 0000000..09572f9 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..0827fac --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="I Know That Feel Bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/i-know-that-feel-bro.png" /> + + <meta name="twitter:title" content="I Know That Feel Bro"> + <meta name="twitter:image" content="https://memes.sapka.me/i-know-that-feel-bro.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, wojak, i-know-that-feel-bro"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> I Know That Feel Bro</h2> + + + + + +<img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png" width=790 height=728/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a> · <a href="https://memes.sapka.me/tags/i-know-that-feel-bro"> I-Know-That-Feel-Bro</a></div> +<hr/> + +<div> <a class="prev-link" href="/shit-im-into-it/"> ← Previous</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..93507d6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..949dbf0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png b/public/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..44691cb --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png b/public/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..c51b181 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png b/public/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..cb71cac --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/index.html b/public/root@143.42.27.127/root@143.42.27.127/index.html new file mode 100644 index 0000000..664b54a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/index.html @@ -0,0 +1,158 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <meta name="generator" content="Hugo 0.92.2" /> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content=""> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content=""> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> </h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/index.txt b/public/root@143.42.27.127/root@143.42.27.127/index.txt new file mode 100644 index 0000000..30fb8cc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/index.txt @@ -0,0 +1,10 @@ +https://memes.sapka.me/i-know-that-feel-bro.png +https://memes.sapka.me/shit-im-into-it.jpg +https://memes.sapka.me/30-year-old-boomer.jpg +https://memes.sapka.me/lol-wut.jpg +https://memes.sapka.me/fuck-yea.jpg +https://memes.sapka.me/challenging-wank.gif +https://memes.sapka.me/no-ragrets.jpg +https://memes.sapka.me/forever-alone.jpg +https://memes.sapka.me/orly.jpg + diff --git a/public/root@143.42.27.127/root@143.42.27.127/index.xml b/public/root@143.42.27.127/root@143.42.27.127/index.xml new file mode 100644 index 0000000..513b060 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/index.xml @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Michal's based meme collection</title> + <link>https://memes.sapka.me/</link> + <description>Recent content on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:42:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/logo.png b/public/root@143.42.27.127/root@143.42.27.127/logo.png Binary files differnew file mode 100644 index 0000000..49d5a0d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/logo.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png Binary files differnew file mode 100644 index 0000000..b303df5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg b/public/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg Binary files differnew file mode 100644 index 0000000..703d21b --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html b/public/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html new file mode 100644 index 0000000..84cf150 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Lol Wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/lol-wut.jpg" /> + + <meta name="twitter:title" content="Lol Wut"> + <meta name="twitter:image" content="https://memes.sapka.me/lol-wut.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, lol-wut"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Lol Wut</h2> + + + + + +<img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg" width=790 height=880/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/lol-wut"> Lol-Wut</a></div> +<hr/> + +<div> <a class="prev-link" href="/fuck-yea/"> ← Previous</a> <a class="next-link" href="/30-year-old-boomer/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..560c47e --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..5801f43 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg b/public/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg Binary files differnew file mode 100644 index 0000000..2172137 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html b/public/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html new file mode 100644 index 0000000..b8c6100 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="No Ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/no-ragrets.jpg" /> + + <meta name="twitter:title" content="No Ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/no-ragrets.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, no-ragrets"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> No Ragrets</h2> + + + + + +<img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg" width=790 height=598/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/no-ragrets"> No-Ragrets</a></div> +<hr/> + +<div> <a class="prev-link" href="/forver-alone/"> ← Previous</a> <a class="next-link" href="/challenging-wank/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..109ecb6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..8cef2e8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/orly.jpg b/public/root@143.42.27.127/root@143.42.27.127/orly.jpg Binary files differnew file mode 100644 index 0000000..8dba518 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/orly.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/orly/index.html b/public/root@143.42.27.127/root@143.42.27.127/orly/index.html new file mode 100644 index 0000000..7bc41b6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/orly/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/orly.jpg" /> + + <meta name="twitter:title" content="Orly"> + <meta name="twitter:image" content="https://memes.sapka.me/orly.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, orly"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Orly</h2> + + + + + +<img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 28, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/orly"> Orly</a></div> +<hr/> + +<div><a class="next-link" href="/forver-alone/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..eabb441 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e623e14 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg Binary files differnew file mode 100644 index 0000000..53581dc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html new file mode 100644 index 0000000..70555a1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="30 Year Old Boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/30-year-old-boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/30-year-old-boomer.jpg" /> + + <meta name="twitter:title" content="30 Year Old Boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/30-year-old-boomer.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, boomer, wojak"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> 30 Year Old Boomer</h2> + + + + + +<img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg" width=790 height=474/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/boomer"> Boomer</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a></div> +<hr/> + +<div> <a class="prev-link" href="/lol-wut/"> ← Previous</a> <a class="next-link" href="/shit-im-into-it/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..f67fb7f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e055007 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.html new file mode 100644 index 0000000..65f8a3e --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Categories" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/categories/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Categories"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Categories</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.xml new file mode 100644 index 0000000..7b9d73d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Categories on Michal's based meme collection</title> + <link>https://memes.sapka.me/categories/</link> + <description>Recent content in Categories on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language><atom:link href="https://memes.sapka.me/categories/index.xml" rel="self" type="application/rss+xml" /> + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif Binary files differnew file mode 100644 index 0000000..2c2322c --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html new file mode 100644 index 0000000..e539dc7 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Challenging Wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/challenging-wank.gif" /> + + <meta name="twitter:title" content="Challenging Wank"> + <meta name="twitter:image" content="https://memes.sapka.me/challenging-wank.gif"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, challenging-wank, animated"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Challenging Wank</h2> + + + + + +<img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif" width=790 height=790/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/challenging-wank"> Challenging-Wank</a> · <a href="https://memes.sapka.me/tags/animated"> Animated</a></div> +<hr/> + +<div> <a class="prev-link" href="/no-ragrets/"> ← Previous</a> <a class="next-link" href="/fuck-yea/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..29efcaa --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..221331a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/deploy.sh b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/deploy.sh new file mode 100755 index 0000000..98af377 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/deploy.sh @@ -0,0 +1 @@ +rsync -rtvzP . root@143.42.27.127 diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/favicon.ico b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/favicon.ico Binary files differnew file mode 100644 index 0000000..36de9d2 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/favicon.ico diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg Binary files differnew file mode 100644 index 0000000..07431c4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..7a8eaf9 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..712f113 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html new file mode 100644 index 0000000..0ba9242 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Forver Alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/forver-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/forever-alone.jpg" /> + + <meta name="twitter:title" content="Forver Alone"> + <meta name="twitter:image" content="https://memes.sapka.me/forever-alone.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, forever-alone"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Forver Alone</h2> + + + + + +<img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg" width=790 height=790/><BR/> +<hr/> +added on December 29, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/forever-alone"> Forever-Alone</a></div> +<hr/> + +<div> <a class="prev-link" href="/orly/"> ← Previous</a> <a class="next-link" href="/no-ragrets/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg Binary files differnew file mode 100644 index 0000000..762d0a4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html new file mode 100644 index 0000000..8170a58 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Fuck Yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/fuck-yea.jpg" /> + + <meta name="twitter:title" content="Fuck Yea"> + <meta name="twitter:image" content="https://memes.sapka.me/fuck-yea.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, fuck-yea"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Fuck Yea</h2> + + + + + +<img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/fuck-yea"> Fuck-Yea</a></div> +<hr/> + +<div> <a class="prev-link" href="/challenging-wank/"> ← Previous</a> <a class="next-link" href="/lol-wut/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..66d68ca --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..d72082d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png Binary files differnew file mode 100644 index 0000000..09572f9 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..0827fac --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="I Know That Feel Bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/i-know-that-feel-bro.png" /> + + <meta name="twitter:title" content="I Know That Feel Bro"> + <meta name="twitter:image" content="https://memes.sapka.me/i-know-that-feel-bro.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, wojak, i-know-that-feel-bro"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> I Know That Feel Bro</h2> + + + + + +<img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png" width=790 height=728/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a> · <a href="https://memes.sapka.me/tags/i-know-that-feel-bro"> I-Know-That-Feel-Bro</a></div> +<hr/> + +<div> <a class="prev-link" href="/shit-im-into-it/"> ← Previous</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..93507d6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..949dbf0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..44691cb --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..c51b181 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..cb71cac --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.html new file mode 100644 index 0000000..664b54a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.html @@ -0,0 +1,158 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <meta name="generator" content="Hugo 0.92.2" /> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content=""> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content=""> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> </h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.txt b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.txt new file mode 100644 index 0000000..30fb8cc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.txt @@ -0,0 +1,10 @@ +https://memes.sapka.me/i-know-that-feel-bro.png +https://memes.sapka.me/shit-im-into-it.jpg +https://memes.sapka.me/30-year-old-boomer.jpg +https://memes.sapka.me/lol-wut.jpg +https://memes.sapka.me/fuck-yea.jpg +https://memes.sapka.me/challenging-wank.gif +https://memes.sapka.me/no-ragrets.jpg +https://memes.sapka.me/forever-alone.jpg +https://memes.sapka.me/orly.jpg + diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.xml new file mode 100644 index 0000000..513b060 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.xml @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Michal's based meme collection</title> + <link>https://memes.sapka.me/</link> + <description>Recent content on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:42:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo.png Binary files differnew file mode 100644 index 0000000..49d5a0d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png Binary files differnew file mode 100644 index 0000000..b303df5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg Binary files differnew file mode 100644 index 0000000..703d21b --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html new file mode 100644 index 0000000..84cf150 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Lol Wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/lol-wut.jpg" /> + + <meta name="twitter:title" content="Lol Wut"> + <meta name="twitter:image" content="https://memes.sapka.me/lol-wut.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, lol-wut"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Lol Wut</h2> + + + + + +<img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg" width=790 height=880/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/lol-wut"> Lol-Wut</a></div> +<hr/> + +<div> <a class="prev-link" href="/fuck-yea/"> ← Previous</a> <a class="next-link" href="/30-year-old-boomer/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..560c47e --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..5801f43 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg Binary files differnew file mode 100644 index 0000000..2172137 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html new file mode 100644 index 0000000..b8c6100 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="No Ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/no-ragrets.jpg" /> + + <meta name="twitter:title" content="No Ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/no-ragrets.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, no-ragrets"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> No Ragrets</h2> + + + + + +<img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg" width=790 height=598/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/no-ragrets"> No-Ragrets</a></div> +<hr/> + +<div> <a class="prev-link" href="/forver-alone/"> ← Previous</a> <a class="next-link" href="/challenging-wank/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..109ecb6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..8cef2e8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly.jpg Binary files differnew file mode 100644 index 0000000..8dba518 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly/index.html new file mode 100644 index 0000000..7bc41b6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/orly.jpg" /> + + <meta name="twitter:title" content="Orly"> + <meta name="twitter:image" content="https://memes.sapka.me/orly.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, orly"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Orly</h2> + + + + + +<img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 28, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/orly"> Orly</a></div> +<hr/> + +<div><a class="next-link" href="/forver-alone/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..eabb441 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e623e14 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg Binary files differnew file mode 100644 index 0000000..53581dc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html new file mode 100644 index 0000000..70555a1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="30 Year Old Boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/30-year-old-boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/30-year-old-boomer.jpg" /> + + <meta name="twitter:title" content="30 Year Old Boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/30-year-old-boomer.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, boomer, wojak"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> 30 Year Old Boomer</h2> + + + + + +<img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg" width=790 height=474/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/boomer"> Boomer</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a></div> +<hr/> + +<div> <a class="prev-link" href="/lol-wut/"> ← Previous</a> <a class="next-link" href="/shit-im-into-it/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..f67fb7f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e055007 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.html new file mode 100644 index 0000000..65f8a3e --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Categories" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/categories/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Categories"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Categories</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.xml new file mode 100644 index 0000000..7b9d73d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Categories on Michal's based meme collection</title> + <link>https://memes.sapka.me/categories/</link> + <description>Recent content in Categories on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language><atom:link href="https://memes.sapka.me/categories/index.xml" rel="self" type="application/rss+xml" /> + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif Binary files differnew file mode 100644 index 0000000..2c2322c --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html new file mode 100644 index 0000000..e539dc7 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Challenging Wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/challenging-wank.gif" /> + + <meta name="twitter:title" content="Challenging Wank"> + <meta name="twitter:image" content="https://memes.sapka.me/challenging-wank.gif"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, challenging-wank, animated"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Challenging Wank</h2> + + + + + +<img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif" width=790 height=790/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/challenging-wank"> Challenging-Wank</a> · <a href="https://memes.sapka.me/tags/animated"> Animated</a></div> +<hr/> + +<div> <a class="prev-link" href="/no-ragrets/"> ← Previous</a> <a class="next-link" href="/fuck-yea/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..29efcaa --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..221331a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/deploy.sh b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/deploy.sh new file mode 100755 index 0000000..98af377 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/deploy.sh @@ -0,0 +1 @@ +rsync -rtvzP . root@143.42.27.127 diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg Binary files differnew file mode 100644 index 0000000..07431c4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..7a8eaf9 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..712f113 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html new file mode 100644 index 0000000..0ba9242 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Forver Alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/forver-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/forever-alone.jpg" /> + + <meta name="twitter:title" content="Forver Alone"> + <meta name="twitter:image" content="https://memes.sapka.me/forever-alone.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, forever-alone"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Forver Alone</h2> + + + + + +<img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg" width=790 height=790/><BR/> +<hr/> +added on December 29, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/forever-alone"> Forever-Alone</a></div> +<hr/> + +<div> <a class="prev-link" href="/orly/"> ← Previous</a> <a class="next-link" href="/no-ragrets/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg Binary files differnew file mode 100644 index 0000000..762d0a4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html new file mode 100644 index 0000000..8170a58 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Fuck Yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/fuck-yea.jpg" /> + + <meta name="twitter:title" content="Fuck Yea"> + <meta name="twitter:image" content="https://memes.sapka.me/fuck-yea.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, fuck-yea"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Fuck Yea</h2> + + + + + +<img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/fuck-yea"> Fuck-Yea</a></div> +<hr/> + +<div> <a class="prev-link" href="/challenging-wank/"> ← Previous</a> <a class="next-link" href="/lol-wut/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..66d68ca --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..d72082d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png Binary files differnew file mode 100644 index 0000000..09572f9 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..0827fac --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="I Know That Feel Bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/i-know-that-feel-bro.png" /> + + <meta name="twitter:title" content="I Know That Feel Bro"> + <meta name="twitter:image" content="https://memes.sapka.me/i-know-that-feel-bro.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, wojak, i-know-that-feel-bro"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> I Know That Feel Bro</h2> + + + + + +<img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png" width=790 height=728/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a> · <a href="https://memes.sapka.me/tags/i-know-that-feel-bro"> I-Know-That-Feel-Bro</a></div> +<hr/> + +<div> <a class="prev-link" href="/shit-im-into-it/"> ← Previous</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..93507d6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..949dbf0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..44691cb --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..c51b181 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..cb71cac --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.html new file mode 100644 index 0000000..664b54a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.html @@ -0,0 +1,158 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <meta name="generator" content="Hugo 0.92.2" /> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content=""> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content=""> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> </h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.txt b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.txt new file mode 100644 index 0000000..30fb8cc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.txt @@ -0,0 +1,10 @@ +https://memes.sapka.me/i-know-that-feel-bro.png +https://memes.sapka.me/shit-im-into-it.jpg +https://memes.sapka.me/30-year-old-boomer.jpg +https://memes.sapka.me/lol-wut.jpg +https://memes.sapka.me/fuck-yea.jpg +https://memes.sapka.me/challenging-wank.gif +https://memes.sapka.me/no-ragrets.jpg +https://memes.sapka.me/forever-alone.jpg +https://memes.sapka.me/orly.jpg + diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.xml new file mode 100644 index 0000000..513b060 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.xml @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Michal's based meme collection</title> + <link>https://memes.sapka.me/</link> + <description>Recent content on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:42:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo.png Binary files differnew file mode 100644 index 0000000..49d5a0d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png Binary files differnew file mode 100644 index 0000000..b303df5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg Binary files differnew file mode 100644 index 0000000..703d21b --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html new file mode 100644 index 0000000..84cf150 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Lol Wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/lol-wut.jpg" /> + + <meta name="twitter:title" content="Lol Wut"> + <meta name="twitter:image" content="https://memes.sapka.me/lol-wut.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, lol-wut"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Lol Wut</h2> + + + + + +<img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg" width=790 height=880/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/lol-wut"> Lol-Wut</a></div> +<hr/> + +<div> <a class="prev-link" href="/fuck-yea/"> ← Previous</a> <a class="next-link" href="/30-year-old-boomer/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..560c47e --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..5801f43 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg Binary files differnew file mode 100644 index 0000000..2172137 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html new file mode 100644 index 0000000..b8c6100 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="No Ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/no-ragrets.jpg" /> + + <meta name="twitter:title" content="No Ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/no-ragrets.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, no-ragrets"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> No Ragrets</h2> + + + + + +<img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg" width=790 height=598/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/no-ragrets"> No-Ragrets</a></div> +<hr/> + +<div> <a class="prev-link" href="/forver-alone/"> ← Previous</a> <a class="next-link" href="/challenging-wank/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..109ecb6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..8cef2e8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly.jpg Binary files differnew file mode 100644 index 0000000..8dba518 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly/index.html new file mode 100644 index 0000000..7bc41b6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/orly.jpg" /> + + <meta name="twitter:title" content="Orly"> + <meta name="twitter:image" content="https://memes.sapka.me/orly.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, orly"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Orly</h2> + + + + + +<img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 28, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/orly"> Orly</a></div> +<hr/> + +<div><a class="next-link" href="/forver-alone/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..eabb441 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e623e14 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg Binary files differnew file mode 100644 index 0000000..53581dc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html new file mode 100644 index 0000000..70555a1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="30 Year Old Boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/30-year-old-boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/30-year-old-boomer.jpg" /> + + <meta name="twitter:title" content="30 Year Old Boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/30-year-old-boomer.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, boomer, wojak"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> 30 Year Old Boomer</h2> + + + + + +<img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg" width=790 height=474/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/boomer"> Boomer</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a></div> +<hr/> + +<div> <a class="prev-link" href="/lol-wut/"> ← Previous</a> <a class="next-link" href="/shit-im-into-it/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..f67fb7f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e055007 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.html new file mode 100644 index 0000000..65f8a3e --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Categories" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/categories/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Categories"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Categories</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.xml new file mode 100644 index 0000000..7b9d73d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/categories/index.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Categories on Michal's based meme collection</title> + <link>https://memes.sapka.me/categories/</link> + <description>Recent content in Categories on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language><atom:link href="https://memes.sapka.me/categories/index.xml" rel="self" type="application/rss+xml" /> + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif Binary files differnew file mode 100644 index 0000000..2c2322c --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html new file mode 100644 index 0000000..e539dc7 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Challenging Wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/challenging-wank.gif" /> + + <meta name="twitter:title" content="Challenging Wank"> + <meta name="twitter:image" content="https://memes.sapka.me/challenging-wank.gif"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, challenging-wank, animated"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Challenging Wank</h2> + + + + + +<img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif" width=790 height=790/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/challenging-wank"> Challenging-Wank</a> · <a href="https://memes.sapka.me/tags/animated"> Animated</a></div> +<hr/> + +<div> <a class="prev-link" href="/no-ragrets/"> ← Previous</a> <a class="next-link" href="/fuck-yea/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..29efcaa --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..221331a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/deploy.sh b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/deploy.sh new file mode 100755 index 0000000..98af377 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/deploy.sh @@ -0,0 +1 @@ +rsync -rtvzP . root@143.42.27.127 diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg Binary files differnew file mode 100644 index 0000000..07431c4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..7a8eaf9 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..712f113 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html new file mode 100644 index 0000000..0ba9242 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/forver-alone/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Forver Alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/forver-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/forever-alone.jpg" /> + + <meta name="twitter:title" content="Forver Alone"> + <meta name="twitter:image" content="https://memes.sapka.me/forever-alone.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, forever-alone"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Forver Alone</h2> + + + + + +<img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg" width=790 height=790/><BR/> +<hr/> +added on December 29, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/forever-alone"> Forever-Alone</a></div> +<hr/> + +<div> <a class="prev-link" href="/orly/"> ← Previous</a> <a class="next-link" href="/no-ragrets/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg Binary files differnew file mode 100644 index 0000000..762d0a4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html new file mode 100644 index 0000000..8170a58 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Fuck Yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/fuck-yea.jpg" /> + + <meta name="twitter:title" content="Fuck Yea"> + <meta name="twitter:image" content="https://memes.sapka.me/fuck-yea.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, fuck-yea"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Fuck Yea</h2> + + + + + +<img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/fuck-yea"> Fuck-Yea</a></div> +<hr/> + +<div> <a class="prev-link" href="/challenging-wank/"> ← Previous</a> <a class="next-link" href="/lol-wut/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..66d68ca --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..d72082d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png Binary files differnew file mode 100644 index 0000000..09572f9 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..0827fac --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="I Know That Feel Bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/i-know-that-feel-bro.png" /> + + <meta name="twitter:title" content="I Know That Feel Bro"> + <meta name="twitter:image" content="https://memes.sapka.me/i-know-that-feel-bro.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, wojak, i-know-that-feel-bro"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> I Know That Feel Bro</h2> + + + + + +<img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png" width=790 height=728/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/wojak"> Wojak</a> · <a href="https://memes.sapka.me/tags/i-know-that-feel-bro"> I-Know-That-Feel-Bro</a></div> +<hr/> + +<div> <a class="prev-link" href="/shit-im-into-it/"> ← Previous</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..93507d6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..949dbf0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png Binary files differnew file mode 100644 index 0000000..44691cb --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/apple-touch-icon.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png Binary files differnew file mode 100644 index 0000000..c51b181 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-16x16.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png Binary files differnew file mode 100644 index 0000000..cb71cac --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/icons/favicon-32x32.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.html new file mode 100644 index 0000000..664b54a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.html @@ -0,0 +1,158 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <meta name="generator" content="Hugo 0.92.2" /> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content=""> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content=""> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> </h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.txt b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.txt new file mode 100644 index 0000000..30fb8cc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.txt @@ -0,0 +1,10 @@ +https://memes.sapka.me/i-know-that-feel-bro.png +https://memes.sapka.me/shit-im-into-it.jpg +https://memes.sapka.me/30-year-old-boomer.jpg +https://memes.sapka.me/lol-wut.jpg +https://memes.sapka.me/fuck-yea.jpg +https://memes.sapka.me/challenging-wank.gif +https://memes.sapka.me/no-ragrets.jpg +https://memes.sapka.me/forever-alone.jpg +https://memes.sapka.me/orly.jpg + diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.xml new file mode 100644 index 0000000..513b060 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/index.xml @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Michal's based meme collection</title> + <link>https://memes.sapka.me/</link> + <description>Recent content on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:42:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo.png Binary files differnew file mode 100644 index 0000000..49d5a0d --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png Binary files differnew file mode 100644 index 0000000..b303df5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg Binary files differnew file mode 100644 index 0000000..703d21b --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html new file mode 100644 index 0000000..84cf150 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Lol Wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/lol-wut.jpg" /> + + <meta name="twitter:title" content="Lol Wut"> + <meta name="twitter:image" content="https://memes.sapka.me/lol-wut.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, lol-wut"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Lol Wut</h2> + + + + + +<img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg" width=790 height=880/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/lol-wut"> Lol-Wut</a></div> +<hr/> + +<div> <a class="prev-link" href="/fuck-yea/"> ← Previous</a> <a class="next-link" href="/30-year-old-boomer/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..560c47e --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..5801f43 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg Binary files differnew file mode 100644 index 0000000..2172137 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html new file mode 100644 index 0000000..b8c6100 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="No Ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/no-ragrets.jpg" /> + + <meta name="twitter:title" content="No Ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/no-ragrets.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, no-ragrets"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> No Ragrets</h2> + + + + + +<img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg" width=790 height=598/><BR/> +<hr/> +added on December 30, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/no-ragrets"> No-Ragrets</a></div> +<hr/> + +<div> <a class="prev-link" href="/forver-alone/"> ← Previous</a> <a class="next-link" href="/challenging-wank/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..109ecb6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..8cef2e8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly.jpg Binary files differnew file mode 100644 index 0000000..8dba518 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly/index.html new file mode 100644 index 0000000..7bc41b6 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/orly.jpg" /> + + <meta name="twitter:title" content="Orly"> + <meta name="twitter:image" content="https://memes.sapka.me/orly.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, orly"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Orly</h2> + + + + + +<img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg" width=790 height=444/><BR/> +<hr/> +added on December 28, 2022 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/orly"> Orly</a></div> +<hr/> + +<div><a class="next-link" href="/forver-alone/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..eabb441 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e623e14 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png Binary files differnew file mode 100644 index 0000000..4000c4b --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg Binary files differnew file mode 100644 index 0000000..f641b02 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html new file mode 100644 index 0000000..d990a15 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Shit Im Into It" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/shit-im-into-it.jpg" /> + + <meta name="twitter:title" content="Shit Im Into It"> + <meta name="twitter:image" content="https://memes.sapka.me/shit-im-into-it.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, shit-im-into-it"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Shit Im Into It</h2> + + + + + +<img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg" width=790 height=809/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/shit-im-into-it"> Shit-Im-Into-It</a></div> +<hr/> + +<div> <a class="prev-link" href="/30-year-old-boomer/"> ← Previous</a> <a class="next-link" href="/i-know-that-feel-bro/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..9026cf2 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e736e31 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/sitemap.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/sitemap.xml new file mode 100644 index 0000000..1704d61 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/sitemap.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" + xmlns:xhtml="http://www.w3.org/1999/xhtml"> + <url> + <loc>https://memes.sapka.me/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/sfw/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/wojak/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/nsfw/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/30-year-old-boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/animated/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/forever-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/forver-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/</loc> + <lastmod>2022-12-28T23:42:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/categories/</loc> + </url> +</urlset> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/style.css b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/style.css new file mode 100644 index 0000000..4be1bf5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/style.css @@ -0,0 +1,67 @@ + + body { + background-color:#020202; + color: #f2f2f2; + font-family: 'arial'; + padding: 0; + margin: 0; + } + img { + max-width: 99%; + width: auto; + height: auto; + } + main { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + } + header { + background-color: #121212; + padding-left: 50px; + height:55px; + } + header div { + padding-top: 12px; + } + header img { + margin-top: 2px; + position: absolute; + left: 5px; + } + a { + text-decoration: none; + color: #f2f2f2; + } + h1 { + font-size: 1.5em; + display: inline; + } + h2 { + font-size: 1.1em; + } + h4 { + font-size: 1.1em; + } + article.list { + display: inline-block; + } + article.list img { + margin: auto; + display: block; + } + .next-link { + float: right; + } + footer { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + opacity: 0.5; + } + footer div { + text-align: center; + } + diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html new file mode 100644 index 0000000..f7c2700 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> alone</h2> + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml new file mode 100644 index 0000000..7b415c8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/alone/</link> + <description>Recent content in alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html new file mode 100644 index 0000000..b2acea3 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="animated" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/animated/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="animated"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> animated</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml new file mode 100644 index 0000000..dc6ce03 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>animated on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/animated/</link> + <description>Recent content in animated on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/animated/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html new file mode 100644 index 0000000..5d796ea --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> boomer</h2> + + + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml new file mode 100644 index 0000000..a6672db --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>boomer on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <description>Recent content in boomer on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:08:11 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/boomer/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html new file mode 100644 index 0000000..04290f3 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="challenging-wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="challenging-wank"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> challenging-wank</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml new file mode 100644 index 0000000..2e46b85 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>challenging-wank on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <description>Recent content in challenging-wank on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/challenging-wank/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html new file mode 100644 index 0000000..a75d1da --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="forever-alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/forever-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="forever-alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> forever-alone</h2> + + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml new file mode 100644 index 0000000..73615c0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>forever-alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <description>Recent content in forever-alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/forever-alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html new file mode 100644 index 0000000..9aca527 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="fuck-yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="fuck-yea"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> fuck-yea</h2> + + + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml new file mode 100644 index 0000000..313544f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>fuck-yea on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <description>Recent content in fuck-yea on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:48:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/fuck-yea/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..a2795a8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="i-know-that-feel-bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="i-know-that-feel-bro"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> i-know-that-feel-bro</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml new file mode 100644 index 0000000..3f45a8f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>i-know-that-feel-bro on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <description>Recent content in i-know-that-feel-bro on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/i-know-that-feel-bro/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.html new file mode 100644 index 0000000..2e6c5b1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Tags" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Tags"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Tags</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.xml new file mode 100644 index 0000000..bf8f959 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.xml @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Tags on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/</link> + <description>Recent content in Tags on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>i-know-that-feel-bro</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>sfw</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/sfw/</guid> + <description></description> + </item> + + <item> + <title>wojak</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/wojak/</guid> + <description></description> + </item> + + <item> + <title>nsfw</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/nsfw/</guid> + <description></description> + </item> + + <item> + <title>shit-im-into-it</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>boomer</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/boomer/</guid> + <description></description> + </item> + + <item> + <title>lol-wut</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>fuck-yea</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>animated</title> + <link>https://memes.sapka.me/tags/animated/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/animated/</guid> + <description></description> + </item> + + <item> + <title>challenging-wank</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>no-ragrets</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>forever-alone</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/forever-alone/</guid> + <description></description> + </item> + + <item> + <title>orly</title> + <link>https://memes.sapka.me/tags/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html new file mode 100644 index 0000000..f4b57dc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="lol-wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="lol-wut"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> lol-wut</h2> + + + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml new file mode 100644 index 0000000..ec5be65 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>lol-wut on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <description>Recent content in lol-wut on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:51:48 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/lol-wut/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html new file mode 100644 index 0000000..b7705e4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="no-ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="no-ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> no-ragrets</h2> + + + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml new file mode 100644 index 0000000..5554b23 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>no-ragrets on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <description>Recent content in no-ragrets on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:42:16 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/no-ragrets/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html new file mode 100644 index 0000000..2ec4ca5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="nsfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/nsfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="nsfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> nsfw</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml new file mode 100644 index 0000000..c73db29 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>nsfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <description>Recent content in nsfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/nsfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html new file mode 100644 index 0000000..5de8e9a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="orly"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> orly</h2> + + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml new file mode 100644 index 0000000..ec9ceb5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>orly on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/orly/</link> + <description>Recent content in orly on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/orly/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html new file mode 100644 index 0000000..b302d95 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="reaction" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/reaction/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="reaction"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> reaction</h2> + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml new file mode 100644 index 0000000..15b2242 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>reaction on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/reaction/</link> + <description>Recent content in reaction on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/reaction/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html new file mode 100644 index 0000000..b69b2eb --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html @@ -0,0 +1,139 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="sfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/sfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="sfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> sfw</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml new file mode 100644 index 0000000..8663237 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>sfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <description>Recent content in sfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/sfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html new file mode 100644 index 0000000..1dd5bfd --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="shit-im-into-it" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="shit-im-into-it"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> shit-im-into-it</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml new file mode 100644 index 0000000..d66e8fd --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>shit-im-into-it on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <description>Recent content in shit-im-into-it on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/shit-im-into-it/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html new file mode 100644 index 0000000..1b99ea0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="wojak" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/wojak/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="wojak"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> wojak</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml new file mode 100644 index 0000000..1e40ca1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>wojak on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <description>Recent content in wojak on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/wojak/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png Binary files differnew file mode 100644 index 0000000..4000c4b --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg Binary files differnew file mode 100644 index 0000000..f641b02 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html new file mode 100644 index 0000000..d990a15 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Shit Im Into It" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/shit-im-into-it.jpg" /> + + <meta name="twitter:title" content="Shit Im Into It"> + <meta name="twitter:image" content="https://memes.sapka.me/shit-im-into-it.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, shit-im-into-it"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Shit Im Into It</h2> + + + + + +<img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg" width=790 height=809/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/shit-im-into-it"> Shit-Im-Into-It</a></div> +<hr/> + +<div> <a class="prev-link" href="/30-year-old-boomer/"> ← Previous</a> <a class="next-link" href="/i-know-that-feel-bro/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..9026cf2 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e736e31 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/sitemap.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/sitemap.xml new file mode 100644 index 0000000..1704d61 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/sitemap.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" + xmlns:xhtml="http://www.w3.org/1999/xhtml"> + <url> + <loc>https://memes.sapka.me/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/sfw/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/wojak/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/nsfw/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/30-year-old-boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/animated/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/forever-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/forver-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/</loc> + <lastmod>2022-12-28T23:42:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/categories/</loc> + </url> +</urlset> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/style.css b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/style.css new file mode 100644 index 0000000..4be1bf5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/style.css @@ -0,0 +1,67 @@ + + body { + background-color:#020202; + color: #f2f2f2; + font-family: 'arial'; + padding: 0; + margin: 0; + } + img { + max-width: 99%; + width: auto; + height: auto; + } + main { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + } + header { + background-color: #121212; + padding-left: 50px; + height:55px; + } + header div { + padding-top: 12px; + } + header img { + margin-top: 2px; + position: absolute; + left: 5px; + } + a { + text-decoration: none; + color: #f2f2f2; + } + h1 { + font-size: 1.5em; + display: inline; + } + h2 { + font-size: 1.1em; + } + h4 { + font-size: 1.1em; + } + article.list { + display: inline-block; + } + article.list img { + margin: auto; + display: block; + } + .next-link { + float: right; + } + footer { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + opacity: 0.5; + } + footer div { + text-align: center; + } + diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html new file mode 100644 index 0000000..f7c2700 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> alone</h2> + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml new file mode 100644 index 0000000..7b415c8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/alone/</link> + <description>Recent content in alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html new file mode 100644 index 0000000..b2acea3 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="animated" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/animated/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="animated"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> animated</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml new file mode 100644 index 0000000..dc6ce03 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>animated on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/animated/</link> + <description>Recent content in animated on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/animated/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html new file mode 100644 index 0000000..5d796ea --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> boomer</h2> + + + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml new file mode 100644 index 0000000..a6672db --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>boomer on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <description>Recent content in boomer on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:08:11 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/boomer/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html new file mode 100644 index 0000000..04290f3 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="challenging-wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="challenging-wank"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> challenging-wank</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml new file mode 100644 index 0000000..2e46b85 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>challenging-wank on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <description>Recent content in challenging-wank on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/challenging-wank/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html new file mode 100644 index 0000000..a75d1da --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="forever-alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/forever-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="forever-alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> forever-alone</h2> + + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml new file mode 100644 index 0000000..73615c0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>forever-alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <description>Recent content in forever-alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/forever-alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html new file mode 100644 index 0000000..9aca527 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="fuck-yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="fuck-yea"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> fuck-yea</h2> + + + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml new file mode 100644 index 0000000..313544f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>fuck-yea on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <description>Recent content in fuck-yea on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:48:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/fuck-yea/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..a2795a8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="i-know-that-feel-bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="i-know-that-feel-bro"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> i-know-that-feel-bro</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml new file mode 100644 index 0000000..3f45a8f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>i-know-that-feel-bro on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <description>Recent content in i-know-that-feel-bro on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/i-know-that-feel-bro/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.html new file mode 100644 index 0000000..2e6c5b1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Tags" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Tags"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Tags</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.xml new file mode 100644 index 0000000..bf8f959 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.xml @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Tags on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/</link> + <description>Recent content in Tags on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>i-know-that-feel-bro</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>sfw</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/sfw/</guid> + <description></description> + </item> + + <item> + <title>wojak</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/wojak/</guid> + <description></description> + </item> + + <item> + <title>nsfw</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/nsfw/</guid> + <description></description> + </item> + + <item> + <title>shit-im-into-it</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>boomer</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/boomer/</guid> + <description></description> + </item> + + <item> + <title>lol-wut</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>fuck-yea</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>animated</title> + <link>https://memes.sapka.me/tags/animated/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/animated/</guid> + <description></description> + </item> + + <item> + <title>challenging-wank</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>no-ragrets</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>forever-alone</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/forever-alone/</guid> + <description></description> + </item> + + <item> + <title>orly</title> + <link>https://memes.sapka.me/tags/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html new file mode 100644 index 0000000..f4b57dc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="lol-wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="lol-wut"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> lol-wut</h2> + + + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml new file mode 100644 index 0000000..ec5be65 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>lol-wut on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <description>Recent content in lol-wut on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:51:48 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/lol-wut/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html new file mode 100644 index 0000000..b7705e4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="no-ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="no-ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> no-ragrets</h2> + + + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml new file mode 100644 index 0000000..5554b23 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>no-ragrets on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <description>Recent content in no-ragrets on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:42:16 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/no-ragrets/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html new file mode 100644 index 0000000..2ec4ca5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="nsfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/nsfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="nsfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> nsfw</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml new file mode 100644 index 0000000..c73db29 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>nsfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <description>Recent content in nsfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/nsfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html new file mode 100644 index 0000000..5de8e9a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="orly"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> orly</h2> + + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml new file mode 100644 index 0000000..ec9ceb5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>orly on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/orly/</link> + <description>Recent content in orly on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/orly/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html new file mode 100644 index 0000000..b302d95 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="reaction" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/reaction/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="reaction"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> reaction</h2> + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml new file mode 100644 index 0000000..15b2242 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>reaction on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/reaction/</link> + <description>Recent content in reaction on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/reaction/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html new file mode 100644 index 0000000..b69b2eb --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html @@ -0,0 +1,139 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="sfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/sfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="sfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> sfw</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml new file mode 100644 index 0000000..8663237 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>sfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <description>Recent content in sfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/sfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html new file mode 100644 index 0000000..1dd5bfd --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="shit-im-into-it" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="shit-im-into-it"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> shit-im-into-it</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml new file mode 100644 index 0000000..d66e8fd --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>shit-im-into-it on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <description>Recent content in shit-im-into-it on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/shit-im-into-it/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html new file mode 100644 index 0000000..1b99ea0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="wojak" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/wojak/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="wojak"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> wojak</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml new file mode 100644 index 0000000..1e40ca1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>wojak on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <description>Recent content in wojak on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/wojak/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png Binary files differnew file mode 100644 index 0000000..4000c4b --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg Binary files differnew file mode 100644 index 0000000..f641b02 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html new file mode 100644 index 0000000..d990a15 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Shit Im Into It" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/shit-im-into-it.jpg" /> + + <meta name="twitter:title" content="Shit Im Into It"> + <meta name="twitter:image" content="https://memes.sapka.me/shit-im-into-it.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, shit-im-into-it"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Shit Im Into It</h2> + + + + + +<img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg" width=790 height=809/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/shit-im-into-it"> Shit-Im-Into-It</a></div> +<hr/> + +<div> <a class="prev-link" href="/30-year-old-boomer/"> ← Previous</a> <a class="next-link" href="/i-know-that-feel-bro/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..9026cf2 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e736e31 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/sitemap.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/sitemap.xml new file mode 100644 index 0000000..1704d61 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/sitemap.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" + xmlns:xhtml="http://www.w3.org/1999/xhtml"> + <url> + <loc>https://memes.sapka.me/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/sfw/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/wojak/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/nsfw/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/30-year-old-boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/animated/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/forever-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/forver-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/</loc> + <lastmod>2022-12-28T23:42:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/categories/</loc> + </url> +</urlset> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/style.css b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/style.css new file mode 100644 index 0000000..4be1bf5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/style.css @@ -0,0 +1,67 @@ + + body { + background-color:#020202; + color: #f2f2f2; + font-family: 'arial'; + padding: 0; + margin: 0; + } + img { + max-width: 99%; + width: auto; + height: auto; + } + main { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + } + header { + background-color: #121212; + padding-left: 50px; + height:55px; + } + header div { + padding-top: 12px; + } + header img { + margin-top: 2px; + position: absolute; + left: 5px; + } + a { + text-decoration: none; + color: #f2f2f2; + } + h1 { + font-size: 1.5em; + display: inline; + } + h2 { + font-size: 1.1em; + } + h4 { + font-size: 1.1em; + } + article.list { + display: inline-block; + } + article.list img { + margin: auto; + display: block; + } + .next-link { + float: right; + } + footer { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + opacity: 0.5; + } + footer div { + text-align: center; + } + diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html new file mode 100644 index 0000000..f7c2700 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> alone</h2> + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml new file mode 100644 index 0000000..7b415c8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/alone/</link> + <description>Recent content in alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html new file mode 100644 index 0000000..b2acea3 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="animated" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/animated/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="animated"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> animated</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml new file mode 100644 index 0000000..dc6ce03 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>animated on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/animated/</link> + <description>Recent content in animated on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/animated/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html new file mode 100644 index 0000000..5d796ea --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> boomer</h2> + + + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml new file mode 100644 index 0000000..a6672db --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>boomer on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <description>Recent content in boomer on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:08:11 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/boomer/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html new file mode 100644 index 0000000..04290f3 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="challenging-wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="challenging-wank"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> challenging-wank</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml new file mode 100644 index 0000000..2e46b85 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>challenging-wank on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <description>Recent content in challenging-wank on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/challenging-wank/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html new file mode 100644 index 0000000..a75d1da --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="forever-alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/forever-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="forever-alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> forever-alone</h2> + + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml new file mode 100644 index 0000000..73615c0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>forever-alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <description>Recent content in forever-alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/forever-alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html new file mode 100644 index 0000000..9aca527 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="fuck-yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="fuck-yea"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> fuck-yea</h2> + + + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml new file mode 100644 index 0000000..313544f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>fuck-yea on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <description>Recent content in fuck-yea on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:48:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/fuck-yea/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..a2795a8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="i-know-that-feel-bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="i-know-that-feel-bro"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> i-know-that-feel-bro</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml new file mode 100644 index 0000000..3f45a8f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>i-know-that-feel-bro on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <description>Recent content in i-know-that-feel-bro on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/i-know-that-feel-bro/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.html new file mode 100644 index 0000000..2e6c5b1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Tags" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Tags"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Tags</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.xml new file mode 100644 index 0000000..bf8f959 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/index.xml @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Tags on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/</link> + <description>Recent content in Tags on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>i-know-that-feel-bro</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>sfw</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/sfw/</guid> + <description></description> + </item> + + <item> + <title>wojak</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/wojak/</guid> + <description></description> + </item> + + <item> + <title>nsfw</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/nsfw/</guid> + <description></description> + </item> + + <item> + <title>shit-im-into-it</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>boomer</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/boomer/</guid> + <description></description> + </item> + + <item> + <title>lol-wut</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>fuck-yea</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>animated</title> + <link>https://memes.sapka.me/tags/animated/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/animated/</guid> + <description></description> + </item> + + <item> + <title>challenging-wank</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>no-ragrets</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>forever-alone</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/forever-alone/</guid> + <description></description> + </item> + + <item> + <title>orly</title> + <link>https://memes.sapka.me/tags/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html new file mode 100644 index 0000000..f4b57dc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="lol-wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="lol-wut"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> lol-wut</h2> + + + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml new file mode 100644 index 0000000..ec5be65 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>lol-wut on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <description>Recent content in lol-wut on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:51:48 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/lol-wut/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html new file mode 100644 index 0000000..b7705e4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="no-ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="no-ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> no-ragrets</h2> + + + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml new file mode 100644 index 0000000..5554b23 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>no-ragrets on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <description>Recent content in no-ragrets on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:42:16 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/no-ragrets/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html new file mode 100644 index 0000000..2ec4ca5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="nsfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/nsfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="nsfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> nsfw</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml new file mode 100644 index 0000000..c73db29 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>nsfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <description>Recent content in nsfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/nsfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html new file mode 100644 index 0000000..5de8e9a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="orly"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> orly</h2> + + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml new file mode 100644 index 0000000..ec9ceb5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>orly on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/orly/</link> + <description>Recent content in orly on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/orly/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html new file mode 100644 index 0000000..b302d95 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="reaction" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/reaction/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="reaction"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> reaction</h2> + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml new file mode 100644 index 0000000..15b2242 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>reaction on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/reaction/</link> + <description>Recent content in reaction on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/reaction/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html new file mode 100644 index 0000000..b69b2eb --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html @@ -0,0 +1,139 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="sfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/sfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="sfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> sfw</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml new file mode 100644 index 0000000..8663237 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>sfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <description>Recent content in sfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/sfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html new file mode 100644 index 0000000..1dd5bfd --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="shit-im-into-it" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="shit-im-into-it"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> shit-im-into-it</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml new file mode 100644 index 0000000..d66e8fd --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>shit-im-into-it on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <description>Recent content in shit-im-into-it on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/shit-im-into-it/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html new file mode 100644 index 0000000..1b99ea0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="wojak" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/wojak/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="wojak"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> wojak</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml new file mode 100644 index 0000000..1e40ca1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>wojak on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <description>Recent content in wojak on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/wojak/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png b/public/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png Binary files differnew file mode 100644 index 0000000..4000c4b --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png diff --git a/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg b/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg Binary files differnew file mode 100644 index 0000000..f641b02 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html b/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html new file mode 100644 index 0000000..d990a15 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Shit Im Into It" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/shit-im-into-it.jpg" /> + + <meta name="twitter:title" content="Shit Im Into It"> + <meta name="twitter:image" content="https://memes.sapka.me/shit-im-into-it.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, shit-im-into-it"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Shit Im Into It</h2> + + + + + +<img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg" width=790 height=809/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/shit-im-into-it"> Shit-Im-Into-It</a></div> +<hr/> + +<div> <a class="prev-link" href="/30-year-old-boomer/"> ← Previous</a> <a class="next-link" href="/i-know-that-feel-bro/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..9026cf2 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e736e31 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/root@143.42.27.127/sitemap.xml b/public/root@143.42.27.127/root@143.42.27.127/sitemap.xml new file mode 100644 index 0000000..1704d61 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/sitemap.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" + xmlns:xhtml="http://www.w3.org/1999/xhtml"> + <url> + <loc>https://memes.sapka.me/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/sfw/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/wojak/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/nsfw/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/30-year-old-boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/animated/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/forever-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/forver-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/</loc> + <lastmod>2022-12-28T23:42:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/categories/</loc> + </url> +</urlset> diff --git a/public/root@143.42.27.127/root@143.42.27.127/style.css b/public/root@143.42.27.127/root@143.42.27.127/style.css new file mode 100644 index 0000000..4be1bf5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/style.css @@ -0,0 +1,67 @@ + + body { + background-color:#020202; + color: #f2f2f2; + font-family: 'arial'; + padding: 0; + margin: 0; + } + img { + max-width: 99%; + width: auto; + height: auto; + } + main { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + } + header { + background-color: #121212; + padding-left: 50px; + height:55px; + } + header div { + padding-top: 12px; + } + header img { + margin-top: 2px; + position: absolute; + left: 5px; + } + a { + text-decoration: none; + color: #f2f2f2; + } + h1 { + font-size: 1.5em; + display: inline; + } + h2 { + font-size: 1.1em; + } + h4 { + font-size: 1.1em; + } + article.list { + display: inline-block; + } + article.list img { + margin: auto; + display: block; + } + .next-link { + float: right; + } + footer { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + opacity: 0.5; + } + footer div { + text-align: center; + } + diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html new file mode 100644 index 0000000..f7c2700 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/alone/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> alone</h2> + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml new file mode 100644 index 0000000..7b415c8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/alone/</link> + <description>Recent content in alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html new file mode 100644 index 0000000..b2acea3 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/animated/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="animated" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/animated/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="animated"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> animated</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml new file mode 100644 index 0000000..dc6ce03 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/animated/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>animated on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/animated/</link> + <description>Recent content in animated on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/animated/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html new file mode 100644 index 0000000..5d796ea --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> boomer</h2> + + + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml new file mode 100644 index 0000000..a6672db --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/boomer/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>boomer on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <description>Recent content in boomer on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:08:11 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/boomer/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html new file mode 100644 index 0000000..04290f3 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="challenging-wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="challenging-wank"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> challenging-wank</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml new file mode 100644 index 0000000..2e46b85 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/challenging-wank/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>challenging-wank on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <description>Recent content in challenging-wank on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/challenging-wank/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html new file mode 100644 index 0000000..a75d1da --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="forever-alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/forever-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="forever-alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> forever-alone</h2> + + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml new file mode 100644 index 0000000..73615c0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/forever-alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>forever-alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <description>Recent content in forever-alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/forever-alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html new file mode 100644 index 0000000..9aca527 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="fuck-yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="fuck-yea"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> fuck-yea</h2> + + + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml new file mode 100644 index 0000000..313544f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/fuck-yea/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>fuck-yea on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <description>Recent content in fuck-yea on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:48:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/fuck-yea/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..a2795a8 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="i-know-that-feel-bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="i-know-that-feel-bro"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> i-know-that-feel-bro</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml new file mode 100644 index 0000000..3f45a8f --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>i-know-that-feel-bro on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <description>Recent content in i-know-that-feel-bro on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/i-know-that-feel-bro/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/index.html new file mode 100644 index 0000000..2e6c5b1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Tags" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Tags"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Tags</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/index.xml new file mode 100644 index 0000000..bf8f959 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/index.xml @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Tags on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/</link> + <description>Recent content in Tags on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>i-know-that-feel-bro</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>sfw</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/sfw/</guid> + <description></description> + </item> + + <item> + <title>wojak</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/wojak/</guid> + <description></description> + </item> + + <item> + <title>nsfw</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/nsfw/</guid> + <description></description> + </item> + + <item> + <title>shit-im-into-it</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>boomer</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/boomer/</guid> + <description></description> + </item> + + <item> + <title>lol-wut</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>fuck-yea</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>animated</title> + <link>https://memes.sapka.me/tags/animated/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/animated/</guid> + <description></description> + </item> + + <item> + <title>challenging-wank</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>no-ragrets</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>forever-alone</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/forever-alone/</guid> + <description></description> + </item> + + <item> + <title>orly</title> + <link>https://memes.sapka.me/tags/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html new file mode 100644 index 0000000..f4b57dc --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="lol-wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="lol-wut"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> lol-wut</h2> + + + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml new file mode 100644 index 0000000..ec5be65 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/lol-wut/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>lol-wut on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <description>Recent content in lol-wut on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:51:48 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/lol-wut/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html new file mode 100644 index 0000000..b7705e4 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="no-ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="no-ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> no-ragrets</h2> + + + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml new file mode 100644 index 0000000..5554b23 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/no-ragrets/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>no-ragrets on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <description>Recent content in no-ragrets on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:42:16 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/no-ragrets/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html new file mode 100644 index 0000000..2ec4ca5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="nsfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/nsfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="nsfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> nsfw</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml new file mode 100644 index 0000000..c73db29 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/nsfw/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>nsfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <description>Recent content in nsfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/nsfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html new file mode 100644 index 0000000..5de8e9a --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/orly/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="orly"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> orly</h2> + + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml new file mode 100644 index 0000000..ec9ceb5 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/orly/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>orly on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/orly/</link> + <description>Recent content in orly on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/orly/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html new file mode 100644 index 0000000..b302d95 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="reaction" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/reaction/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="reaction"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> reaction</h2> + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml new file mode 100644 index 0000000..15b2242 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/reaction/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>reaction on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/reaction/</link> + <description>Recent content in reaction on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/reaction/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html new file mode 100644 index 0000000..b69b2eb --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.html @@ -0,0 +1,139 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="sfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/sfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="sfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> sfw</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml new file mode 100644 index 0000000..8663237 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/sfw/index.xml @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>sfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <description>Recent content in sfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/sfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html new file mode 100644 index 0000000..1dd5bfd --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="shit-im-into-it" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="shit-im-into-it"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> shit-im-into-it</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml new file mode 100644 index 0000000..d66e8fd --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/shit-im-into-it/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>shit-im-into-it on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <description>Recent content in shit-im-into-it on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/shit-im-into-it/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html b/public/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html new file mode 100644 index 0000000..1b99ea0 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="wojak" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/wojak/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="wojak"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> wojak</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml b/public/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml new file mode 100644 index 0000000..1e40ca1 --- /dev/null +++ b/public/root@143.42.27.127/root@143.42.27.127/tags/wojak/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>wojak on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <description>Recent content in wojak on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/wojak/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png b/public/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png Binary files differnew file mode 100644 index 0000000..4000c4b --- /dev/null +++ b/public/root@143.42.27.127/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png diff --git a/public/root@143.42.27.127/shit-im-into-it.jpg b/public/root@143.42.27.127/shit-im-into-it.jpg Binary files differnew file mode 100644 index 0000000..f641b02 --- /dev/null +++ b/public/root@143.42.27.127/shit-im-into-it.jpg diff --git a/public/root@143.42.27.127/shit-im-into-it/index.html b/public/root@143.42.27.127/shit-im-into-it/index.html new file mode 100644 index 0000000..d990a15 --- /dev/null +++ b/public/root@143.42.27.127/shit-im-into-it/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Shit Im Into It" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/shit-im-into-it.jpg" /> + + <meta name="twitter:title" content="Shit Im Into It"> + <meta name="twitter:image" content="https://memes.sapka.me/shit-im-into-it.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, shit-im-into-it"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Shit Im Into It</h2> + + + + + +<img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg" width=790 height=809/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/shit-im-into-it"> Shit-Im-Into-It</a></div> +<hr/> + +<div> <a class="prev-link" href="/30-year-old-boomer/"> ← Previous</a> <a class="next-link" href="/i-know-that-feel-bro/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg b/public/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..9026cf2 --- /dev/null +++ b/public/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg b/public/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e736e31 --- /dev/null +++ b/public/root@143.42.27.127/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg diff --git a/public/root@143.42.27.127/sitemap.xml b/public/root@143.42.27.127/sitemap.xml new file mode 100644 index 0000000..1704d61 --- /dev/null +++ b/public/root@143.42.27.127/sitemap.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" + xmlns:xhtml="http://www.w3.org/1999/xhtml"> + <url> + <loc>https://memes.sapka.me/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/sfw/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/wojak/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/nsfw/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/30-year-old-boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/animated/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/forever-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/forver-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/</loc> + <lastmod>2022-12-28T23:42:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/categories/</loc> + </url> +</urlset> diff --git a/public/root@143.42.27.127/style.css b/public/root@143.42.27.127/style.css new file mode 100644 index 0000000..4be1bf5 --- /dev/null +++ b/public/root@143.42.27.127/style.css @@ -0,0 +1,67 @@ + + body { + background-color:#020202; + color: #f2f2f2; + font-family: 'arial'; + padding: 0; + margin: 0; + } + img { + max-width: 99%; + width: auto; + height: auto; + } + main { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + } + header { + background-color: #121212; + padding-left: 50px; + height:55px; + } + header div { + padding-top: 12px; + } + header img { + margin-top: 2px; + position: absolute; + left: 5px; + } + a { + text-decoration: none; + color: #f2f2f2; + } + h1 { + font-size: 1.5em; + display: inline; + } + h2 { + font-size: 1.1em; + } + h4 { + font-size: 1.1em; + } + article.list { + display: inline-block; + } + article.list img { + margin: auto; + display: block; + } + .next-link { + float: right; + } + footer { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + opacity: 0.5; + } + footer div { + text-align: center; + } + diff --git a/public/root@143.42.27.127/tags/alone/index.html b/public/root@143.42.27.127/tags/alone/index.html new file mode 100644 index 0000000..f7c2700 --- /dev/null +++ b/public/root@143.42.27.127/tags/alone/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> alone</h2> + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/alone/index.xml b/public/root@143.42.27.127/tags/alone/index.xml new file mode 100644 index 0000000..7b415c8 --- /dev/null +++ b/public/root@143.42.27.127/tags/alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/alone/</link> + <description>Recent content in alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/animated/index.html b/public/root@143.42.27.127/tags/animated/index.html new file mode 100644 index 0000000..b2acea3 --- /dev/null +++ b/public/root@143.42.27.127/tags/animated/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="animated" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/animated/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="animated"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> animated</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/animated/index.xml b/public/root@143.42.27.127/tags/animated/index.xml new file mode 100644 index 0000000..dc6ce03 --- /dev/null +++ b/public/root@143.42.27.127/tags/animated/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>animated on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/animated/</link> + <description>Recent content in animated on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/animated/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/boomer/index.html b/public/root@143.42.27.127/tags/boomer/index.html new file mode 100644 index 0000000..5d796ea --- /dev/null +++ b/public/root@143.42.27.127/tags/boomer/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> boomer</h2> + + + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/boomer/index.xml b/public/root@143.42.27.127/tags/boomer/index.xml new file mode 100644 index 0000000..a6672db --- /dev/null +++ b/public/root@143.42.27.127/tags/boomer/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>boomer on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <description>Recent content in boomer on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:08:11 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/boomer/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/challenging-wank/index.html b/public/root@143.42.27.127/tags/challenging-wank/index.html new file mode 100644 index 0000000..04290f3 --- /dev/null +++ b/public/root@143.42.27.127/tags/challenging-wank/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="challenging-wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="challenging-wank"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> challenging-wank</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/challenging-wank/index.xml b/public/root@143.42.27.127/tags/challenging-wank/index.xml new file mode 100644 index 0000000..2e46b85 --- /dev/null +++ b/public/root@143.42.27.127/tags/challenging-wank/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>challenging-wank on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <description>Recent content in challenging-wank on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/challenging-wank/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/forever-alone/index.html b/public/root@143.42.27.127/tags/forever-alone/index.html new file mode 100644 index 0000000..a75d1da --- /dev/null +++ b/public/root@143.42.27.127/tags/forever-alone/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="forever-alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/forever-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="forever-alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> forever-alone</h2> + + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/forever-alone/index.xml b/public/root@143.42.27.127/tags/forever-alone/index.xml new file mode 100644 index 0000000..73615c0 --- /dev/null +++ b/public/root@143.42.27.127/tags/forever-alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>forever-alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <description>Recent content in forever-alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/forever-alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/fuck-yea/index.html b/public/root@143.42.27.127/tags/fuck-yea/index.html new file mode 100644 index 0000000..9aca527 --- /dev/null +++ b/public/root@143.42.27.127/tags/fuck-yea/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="fuck-yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="fuck-yea"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> fuck-yea</h2> + + + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/fuck-yea/index.xml b/public/root@143.42.27.127/tags/fuck-yea/index.xml new file mode 100644 index 0000000..313544f --- /dev/null +++ b/public/root@143.42.27.127/tags/fuck-yea/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>fuck-yea on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <description>Recent content in fuck-yea on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:48:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/fuck-yea/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/i-know-that-feel-bro/index.html b/public/root@143.42.27.127/tags/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..a2795a8 --- /dev/null +++ b/public/root@143.42.27.127/tags/i-know-that-feel-bro/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="i-know-that-feel-bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="i-know-that-feel-bro"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> i-know-that-feel-bro</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml b/public/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml new file mode 100644 index 0000000..3f45a8f --- /dev/null +++ b/public/root@143.42.27.127/tags/i-know-that-feel-bro/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>i-know-that-feel-bro on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <description>Recent content in i-know-that-feel-bro on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/i-know-that-feel-bro/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/index.html b/public/root@143.42.27.127/tags/index.html new file mode 100644 index 0000000..2e6c5b1 --- /dev/null +++ b/public/root@143.42.27.127/tags/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Tags" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Tags"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Tags</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/index.xml b/public/root@143.42.27.127/tags/index.xml new file mode 100644 index 0000000..bf8f959 --- /dev/null +++ b/public/root@143.42.27.127/tags/index.xml @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Tags on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/</link> + <description>Recent content in Tags on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>i-know-that-feel-bro</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>sfw</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/sfw/</guid> + <description></description> + </item> + + <item> + <title>wojak</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/wojak/</guid> + <description></description> + </item> + + <item> + <title>nsfw</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/nsfw/</guid> + <description></description> + </item> + + <item> + <title>shit-im-into-it</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>boomer</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/boomer/</guid> + <description></description> + </item> + + <item> + <title>lol-wut</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>fuck-yea</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>animated</title> + <link>https://memes.sapka.me/tags/animated/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/animated/</guid> + <description></description> + </item> + + <item> + <title>challenging-wank</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>no-ragrets</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>forever-alone</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/forever-alone/</guid> + <description></description> + </item> + + <item> + <title>orly</title> + <link>https://memes.sapka.me/tags/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/lol-wut/index.html b/public/root@143.42.27.127/tags/lol-wut/index.html new file mode 100644 index 0000000..f4b57dc --- /dev/null +++ b/public/root@143.42.27.127/tags/lol-wut/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="lol-wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="lol-wut"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> lol-wut</h2> + + + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/lol-wut/index.xml b/public/root@143.42.27.127/tags/lol-wut/index.xml new file mode 100644 index 0000000..ec5be65 --- /dev/null +++ b/public/root@143.42.27.127/tags/lol-wut/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>lol-wut on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <description>Recent content in lol-wut on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:51:48 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/lol-wut/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/no-ragrets/index.html b/public/root@143.42.27.127/tags/no-ragrets/index.html new file mode 100644 index 0000000..b7705e4 --- /dev/null +++ b/public/root@143.42.27.127/tags/no-ragrets/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="no-ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="no-ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> no-ragrets</h2> + + + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/no-ragrets/index.xml b/public/root@143.42.27.127/tags/no-ragrets/index.xml new file mode 100644 index 0000000..5554b23 --- /dev/null +++ b/public/root@143.42.27.127/tags/no-ragrets/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>no-ragrets on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <description>Recent content in no-ragrets on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:42:16 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/no-ragrets/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/nsfw/index.html b/public/root@143.42.27.127/tags/nsfw/index.html new file mode 100644 index 0000000..2ec4ca5 --- /dev/null +++ b/public/root@143.42.27.127/tags/nsfw/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="nsfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/nsfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="nsfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> nsfw</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/nsfw/index.xml b/public/root@143.42.27.127/tags/nsfw/index.xml new file mode 100644 index 0000000..c73db29 --- /dev/null +++ b/public/root@143.42.27.127/tags/nsfw/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>nsfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <description>Recent content in nsfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/nsfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/orly/index.html b/public/root@143.42.27.127/tags/orly/index.html new file mode 100644 index 0000000..5de8e9a --- /dev/null +++ b/public/root@143.42.27.127/tags/orly/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="orly"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> orly</h2> + + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/orly/index.xml b/public/root@143.42.27.127/tags/orly/index.xml new file mode 100644 index 0000000..ec9ceb5 --- /dev/null +++ b/public/root@143.42.27.127/tags/orly/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>orly on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/orly/</link> + <description>Recent content in orly on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/orly/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/reaction/index.html b/public/root@143.42.27.127/tags/reaction/index.html new file mode 100644 index 0000000..b302d95 --- /dev/null +++ b/public/root@143.42.27.127/tags/reaction/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="reaction" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/reaction/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="reaction"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> reaction</h2> + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/reaction/index.xml b/public/root@143.42.27.127/tags/reaction/index.xml new file mode 100644 index 0000000..15b2242 --- /dev/null +++ b/public/root@143.42.27.127/tags/reaction/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>reaction on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/reaction/</link> + <description>Recent content in reaction on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/reaction/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/sfw/index.html b/public/root@143.42.27.127/tags/sfw/index.html new file mode 100644 index 0000000..b69b2eb --- /dev/null +++ b/public/root@143.42.27.127/tags/sfw/index.html @@ -0,0 +1,139 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="sfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/sfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="sfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> sfw</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/sfw/index.xml b/public/root@143.42.27.127/tags/sfw/index.xml new file mode 100644 index 0000000..8663237 --- /dev/null +++ b/public/root@143.42.27.127/tags/sfw/index.xml @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>sfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <description>Recent content in sfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/sfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/shit-im-into-it/index.html b/public/root@143.42.27.127/tags/shit-im-into-it/index.html new file mode 100644 index 0000000..1dd5bfd --- /dev/null +++ b/public/root@143.42.27.127/tags/shit-im-into-it/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="shit-im-into-it" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="shit-im-into-it"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> shit-im-into-it</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/shit-im-into-it/index.xml b/public/root@143.42.27.127/tags/shit-im-into-it/index.xml new file mode 100644 index 0000000..d66e8fd --- /dev/null +++ b/public/root@143.42.27.127/tags/shit-im-into-it/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>shit-im-into-it on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <description>Recent content in shit-im-into-it on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/shit-im-into-it/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/root@143.42.27.127/tags/wojak/index.html b/public/root@143.42.27.127/tags/wojak/index.html new file mode 100644 index 0000000..1b99ea0 --- /dev/null +++ b/public/root@143.42.27.127/tags/wojak/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="wojak" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/wojak/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="wojak"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> wojak</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/root@143.42.27.127/tags/wojak/index.xml b/public/root@143.42.27.127/tags/wojak/index.xml new file mode 100644 index 0000000..1e40ca1 --- /dev/null +++ b/public/root@143.42.27.127/tags/wojak/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>wojak on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <description>Recent content in wojak on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/wojak/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png b/public/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png Binary files differnew file mode 100644 index 0000000..4000c4b --- /dev/null +++ b/public/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png diff --git a/public/shit-im-into-it.jpg b/public/shit-im-into-it.jpg Binary files differnew file mode 100644 index 0000000..f641b02 --- /dev/null +++ b/public/shit-im-into-it.jpg diff --git a/public/shit-im-into-it/index.html b/public/shit-im-into-it/index.html new file mode 100644 index 0000000..d990a15 --- /dev/null +++ b/public/shit-im-into-it/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Shit Im Into It" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/shit-im-into-it.jpg" /> + + <meta name="twitter:title" content="Shit Im Into It"> + <meta name="twitter:image" content="https://memes.sapka.me/shit-im-into-it.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="nsfw, shit-im-into-it"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Shit Im Into It</h2> + + + + + +<img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg" width=790 height=809/><BR/> +<hr/> +added on January 1, 2023 with tags:<a href="https://memes.sapka.me/tags/nsfw"> Nsfw</a> · <a href="https://memes.sapka.me/tags/shit-im-into-it"> Shit-Im-Into-It</a></div> +<hr/> + +<div> <a class="prev-link" href="/30-year-old-boomer/"> ← Previous</a> <a class="next-link" href="/i-know-that-feel-bro/">Next →</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg b/public/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..9026cf2 --- /dev/null +++ b/public/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg diff --git a/public/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg b/public/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e736e31 --- /dev/null +++ b/public/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..818527a --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" + xmlns:xhtml="http://www.w3.org/1999/xhtml"> + <url> + <loc>https://memes.sapka.me/tags/sfw/</loc> + <lastmod>2023-01-02T22:08:38+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/</loc> + <lastmod>2023-01-02T22:08:38+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/the-risk-was-calculated/</loc> + <lastmod>2023-01-02T22:08:38+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/the-risk-was-calculated/</loc> + <lastmod>2023-01-02T22:08:38+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/i-know-that-feel-bro/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/wojak/</loc> + <lastmod>2023-01-01T21:12:10+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/nsfw/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/shit-im-into-it/</loc> + <lastmod>2023-01-01T21:10:00+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/30-year-old-boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/boomer/</loc> + <lastmod>2023-01-01T21:08:11+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/lol-wut/</loc> + <lastmod>2022-12-30T22:51:48+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/fuck-yea/</loc> + <lastmod>2022-12-30T22:48:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/animated/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/challenging-wank/</loc> + <lastmod>2022-12-30T22:45:23+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/no-ragrets/</loc> + <lastmod>2022-12-30T22:42:16+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/forever-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/forver-alone/</loc> + <lastmod>2022-12-29T10:03:52+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/</loc> + <lastmod>2022-12-28T23:42:51+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/tags/orly/</loc> + <lastmod>2022-12-28T23:26:17+01:00</lastmod> + </url><url> + <loc>https://memes.sapka.me/categories/</loc> + </url> +</urlset> diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..4be1bf5 --- /dev/null +++ b/public/style.css @@ -0,0 +1,67 @@ + + body { + background-color:#020202; + color: #f2f2f2; + font-family: 'arial'; + padding: 0; + margin: 0; + } + img { + max-width: 99%; + width: auto; + height: auto; + } + main { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + } + header { + background-color: #121212; + padding-left: 50px; + height:55px; + } + header div { + padding-top: 12px; + } + header img { + margin-top: 2px; + position: absolute; + left: 5px; + } + a { + text-decoration: none; + color: #f2f2f2; + } + h1 { + font-size: 1.5em; + display: inline; + } + h2 { + font-size: 1.1em; + } + h4 { + font-size: 1.1em; + } + article.list { + display: inline-block; + } + article.list img { + margin: auto; + display: block; + } + .next-link { + float: right; + } + footer { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + opacity: 0.5; + } + footer div { + text-align: center; + } + diff --git a/public/tags/alone/index.html b/public/tags/alone/index.html new file mode 100644 index 0000000..f7c2700 --- /dev/null +++ b/public/tags/alone/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> alone</h2> + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/alone/index.xml b/public/tags/alone/index.xml new file mode 100644 index 0000000..7b415c8 --- /dev/null +++ b/public/tags/alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/alone/</link> + <description>Recent content in alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/animated/index.html b/public/tags/animated/index.html new file mode 100644 index 0000000..b2acea3 --- /dev/null +++ b/public/tags/animated/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="animated" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/animated/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="animated"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> animated</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/animated/index.xml b/public/tags/animated/index.xml new file mode 100644 index 0000000..dc6ce03 --- /dev/null +++ b/public/tags/animated/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>animated on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/animated/</link> + <description>Recent content in animated on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/animated/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/boomer/index.html b/public/tags/boomer/index.html new file mode 100644 index 0000000..5d796ea --- /dev/null +++ b/public/tags/boomer/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="boomer" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/boomer/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="boomer"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> boomer</h2> + + + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/boomer/index.xml b/public/tags/boomer/index.xml new file mode 100644 index 0000000..a6672db --- /dev/null +++ b/public/tags/boomer/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>boomer on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <description>Recent content in boomer on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:08:11 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/boomer/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/challenging-wank/index.html b/public/tags/challenging-wank/index.html new file mode 100644 index 0000000..04290f3 --- /dev/null +++ b/public/tags/challenging-wank/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="challenging-wank" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/challenging-wank/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="challenging-wank"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> challenging-wank</h2> + + + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/challenging-wank/index.xml b/public/tags/challenging-wank/index.xml new file mode 100644 index 0000000..2e46b85 --- /dev/null +++ b/public/tags/challenging-wank/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>challenging-wank on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <description>Recent content in challenging-wank on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:45:23 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/challenging-wank/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/forever-alone/index.html b/public/tags/forever-alone/index.html new file mode 100644 index 0000000..a75d1da --- /dev/null +++ b/public/tags/forever-alone/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="forever-alone" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/forever-alone/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="forever-alone"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> forever-alone</h2> + + + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/forever-alone/index.xml b/public/tags/forever-alone/index.xml new file mode 100644 index 0000000..73615c0 --- /dev/null +++ b/public/tags/forever-alone/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>forever-alone on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <description>Recent content in forever-alone on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Thu, 29 Dec 2022 10:03:52 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/forever-alone/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/fuck-yea/index.html b/public/tags/fuck-yea/index.html new file mode 100644 index 0000000..9aca527 --- /dev/null +++ b/public/tags/fuck-yea/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="fuck-yea" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/fuck-yea/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="fuck-yea"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> fuck-yea</h2> + + + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/fuck-yea/index.xml b/public/tags/fuck-yea/index.xml new file mode 100644 index 0000000..313544f --- /dev/null +++ b/public/tags/fuck-yea/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>fuck-yea on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <description>Recent content in fuck-yea on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:48:51 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/fuck-yea/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/i-know-that-feel-bro/index.html b/public/tags/i-know-that-feel-bro/index.html new file mode 100644 index 0000000..a2795a8 --- /dev/null +++ b/public/tags/i-know-that-feel-bro/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="i-know-that-feel-bro" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/i-know-that-feel-bro/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="i-know-that-feel-bro"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> i-know-that-feel-bro</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/i-know-that-feel-bro/index.xml b/public/tags/i-know-that-feel-bro/index.xml new file mode 100644 index 0000000..3f45a8f --- /dev/null +++ b/public/tags/i-know-that-feel-bro/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>i-know-that-feel-bro on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <description>Recent content in i-know-that-feel-bro on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/i-know-that-feel-bro/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/index.html b/public/tags/index.html new file mode 100644 index 0000000..2e6c5b1 --- /dev/null +++ b/public/tags/index.html @@ -0,0 +1,76 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="Tags" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="Tags"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> Tags</h2> + + + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/index.xml b/public/tags/index.xml new file mode 100644 index 0000000..8931ff7 --- /dev/null +++ b/public/tags/index.xml @@ -0,0 +1,137 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Tags on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/</link> + <description>Recent content in Tags on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Mon, 02 Jan 2023 22:08:38 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>sfw</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <pubDate>Mon, 02 Jan 2023 22:08:38 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/sfw/</guid> + <description></description> + </item> + + <item> + <title>the-risk-was-calculated</title> + <link>https://memes.sapka.me/tags/the-risk-was-calculated/</link> + <pubDate>Mon, 02 Jan 2023 22:08:38 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/the-risk-was-calculated/</guid> + <description></description> + </item> + + <item> + <title>i-know-that-feel-bro</title> + <link>https://memes.sapka.me/tags/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>wojak</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/wojak/</guid> + <description></description> + </item> + + <item> + <title>nsfw</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/nsfw/</guid> + <description></description> + </item> + + <item> + <title>shit-im-into-it</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>boomer</title> + <link>https://memes.sapka.me/tags/boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/boomer/</guid> + <description></description> + </item> + + <item> + <title>lol-wut</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>fuck-yea</title> + <link>https://memes.sapka.me/tags/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>animated</title> + <link>https://memes.sapka.me/tags/animated/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/animated/</guid> + <description></description> + </item> + + <item> + <title>challenging-wank</title> + <link>https://memes.sapka.me/tags/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/challenging-wank/</guid> + <description></description> + </item> + + <item> + <title>no-ragrets</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>forever-alone</title> + <link>https://memes.sapka.me/tags/forever-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/forever-alone/</guid> + <description></description> + </item> + + <item> + <title>orly</title> + <link>https://memes.sapka.me/tags/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/tags/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/lol-wut/index.html b/public/tags/lol-wut/index.html new file mode 100644 index 0000000..f4b57dc --- /dev/null +++ b/public/tags/lol-wut/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="lol-wut" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/lol-wut/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="lol-wut"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> lol-wut</h2> + + + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/lol-wut/index.xml b/public/tags/lol-wut/index.xml new file mode 100644 index 0000000..ec5be65 --- /dev/null +++ b/public/tags/lol-wut/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>lol-wut on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/lol-wut/</link> + <description>Recent content in lol-wut on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:51:48 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/lol-wut/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/no-ragrets/index.html b/public/tags/no-ragrets/index.html new file mode 100644 index 0000000..b7705e4 --- /dev/null +++ b/public/tags/no-ragrets/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="no-ragrets" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/no-ragrets/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="no-ragrets"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> no-ragrets</h2> + + + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/no-ragrets/index.xml b/public/tags/no-ragrets/index.xml new file mode 100644 index 0000000..5554b23 --- /dev/null +++ b/public/tags/no-ragrets/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>no-ragrets on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/no-ragrets/</link> + <description>Recent content in no-ragrets on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Fri, 30 Dec 2022 22:42:16 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/no-ragrets/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/nsfw/index.html b/public/tags/nsfw/index.html new file mode 100644 index 0000000..2ec4ca5 --- /dev/null +++ b/public/tags/nsfw/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="nsfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/nsfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="nsfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> nsfw</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + <article class="list"> + <a href="/challenging-wank/"> + + + + <img alt="Challenging Wank" src="https://memes.sapka.me/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif" width=350 height=350/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/nsfw/index.xml b/public/tags/nsfw/index.xml new file mode 100644 index 0000000..c73db29 --- /dev/null +++ b/public/tags/nsfw/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>nsfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/nsfw/</link> + <description>Recent content in nsfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/nsfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + <item> + <title>Challenging Wank</title> + <link>https://memes.sapka.me/challenging-wank/</link> + <pubDate>Fri, 30 Dec 2022 22:45:23 +0100</pubDate> + + <guid>https://memes.sapka.me/challenging-wank/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/orly/index.html b/public/tags/orly/index.html new file mode 100644 index 0000000..5de8e9a --- /dev/null +++ b/public/tags/orly/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="orly" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/orly/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="orly"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> orly</h2> + + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/orly/index.xml b/public/tags/orly/index.xml new file mode 100644 index 0000000..ec9ceb5 --- /dev/null +++ b/public/tags/orly/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>orly on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/orly/</link> + <description>Recent content in orly on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/orly/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/reaction/index.html b/public/tags/reaction/index.html new file mode 100644 index 0000000..b302d95 --- /dev/null +++ b/public/tags/reaction/index.html @@ -0,0 +1,83 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="reaction" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/reaction/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="reaction"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + <h2> reaction</h2> + + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/reaction/index.xml b/public/tags/reaction/index.xml new file mode 100644 index 0000000..15b2242 --- /dev/null +++ b/public/tags/reaction/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>reaction on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/reaction/</link> + <description>Recent content in reaction on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Wed, 28 Dec 2022 23:26:17 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/reaction/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/sfw/index.html b/public/tags/sfw/index.html new file mode 100644 index 0000000..7ad0097 --- /dev/null +++ b/public/tags/sfw/index.html @@ -0,0 +1,148 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="sfw" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/sfw/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="sfw"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> sfw</h2> + + + + <article class="list"> + <a href="/the-risk-was-calculated/"> + + + + <img alt="The Risk Was Calculated" src="https://memes.sapka.me/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_350x0_resize_q75_box.jpg" width=350 height=247/> + </a> + </article> + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + <article class="list"> + <a href="/lol-wut/"> + + + + <img alt="Lol Wut" src="https://memes.sapka.me/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg" width=350 height=390/> + </a> + </article> + + <article class="list"> + <a href="/fuck-yea/"> + + + + <img alt="Fuck Yea" src="https://memes.sapka.me/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + <article class="list"> + <a href="/no-ragrets/"> + + + + <img alt="No Ragrets" src="https://memes.sapka.me/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg" width=350 height=265/> + </a> + </article> + + <article class="list"> + <a href="/forver-alone/"> + + + + <img alt="Forver Alone" src="https://memes.sapka.me/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg" width=350 height=350/> + </a> + </article> + + <article class="list"> + <a href="/orly/"> + + + + <img alt="Orly" src="https://memes.sapka.me/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg" width=350 height=197/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/sfw/index.xml b/public/tags/sfw/index.xml new file mode 100644 index 0000000..d549633 --- /dev/null +++ b/public/tags/sfw/index.xml @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>sfw on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/sfw/</link> + <description>Recent content in sfw on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Mon, 02 Jan 2023 22:08:38 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/sfw/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>The Risk Was Calculated</title> + <link>https://memes.sapka.me/the-risk-was-calculated/</link> + <pubDate>Mon, 02 Jan 2023 22:08:38 +0100</pubDate> + + <guid>https://memes.sapka.me/the-risk-was-calculated/</guid> + <description></description> + </item> + + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + <item> + <title>Lol Wut</title> + <link>https://memes.sapka.me/lol-wut/</link> + <pubDate>Fri, 30 Dec 2022 22:51:48 +0100</pubDate> + + <guid>https://memes.sapka.me/lol-wut/</guid> + <description></description> + </item> + + <item> + <title>Fuck Yea</title> + <link>https://memes.sapka.me/fuck-yea/</link> + <pubDate>Fri, 30 Dec 2022 22:48:51 +0100</pubDate> + + <guid>https://memes.sapka.me/fuck-yea/</guid> + <description></description> + </item> + + <item> + <title>No Ragrets</title> + <link>https://memes.sapka.me/no-ragrets/</link> + <pubDate>Fri, 30 Dec 2022 22:42:16 +0100</pubDate> + + <guid>https://memes.sapka.me/no-ragrets/</guid> + <description></description> + </item> + + <item> + <title>Forver Alone</title> + <link>https://memes.sapka.me/forver-alone/</link> + <pubDate>Thu, 29 Dec 2022 10:03:52 +0100</pubDate> + + <guid>https://memes.sapka.me/forver-alone/</guid> + <description></description> + </item> + + <item> + <title>Orly</title> + <link>https://memes.sapka.me/orly/</link> + <pubDate>Wed, 28 Dec 2022 23:26:17 +0100</pubDate> + + <guid>https://memes.sapka.me/orly/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/shit-im-into-it/index.html b/public/tags/shit-im-into-it/index.html new file mode 100644 index 0000000..1dd5bfd --- /dev/null +++ b/public/tags/shit-im-into-it/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="shit-im-into-it" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/shit-im-into-it/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="shit-im-into-it"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> shit-im-into-it</h2> + + + + <article class="list"> + <a href="/shit-im-into-it/"> + + + + <img alt="Shit Im Into It" src="https://memes.sapka.me/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg" width=350 height=358/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/shit-im-into-it/index.xml b/public/tags/shit-im-into-it/index.xml new file mode 100644 index 0000000..d66e8fd --- /dev/null +++ b/public/tags/shit-im-into-it/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>shit-im-into-it on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/shit-im-into-it/</link> + <description>Recent content in shit-im-into-it on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:10:00 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/shit-im-into-it/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>Shit Im Into It</title> + <link>https://memes.sapka.me/shit-im-into-it/</link> + <pubDate>Sun, 01 Jan 2023 21:10:00 +0100</pubDate> + + <guid>https://memes.sapka.me/shit-im-into-it/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/the-risk-was-calculated/index.html b/public/tags/the-risk-was-calculated/index.html new file mode 100644 index 0000000..f90edda --- /dev/null +++ b/public/tags/the-risk-was-calculated/index.html @@ -0,0 +1,85 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="the-risk-was-calculated" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/the-risk-was-calculated/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="the-risk-was-calculated"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> the-risk-was-calculated</h2> + + + + <article class="list"> + <a href="/the-risk-was-calculated/"> + + + + <img alt="The Risk Was Calculated" src="https://memes.sapka.me/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_350x0_resize_q75_box.jpg" width=350 height=247/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/the-risk-was-calculated/index.xml b/public/tags/the-risk-was-calculated/index.xml new file mode 100644 index 0000000..554f380 --- /dev/null +++ b/public/tags/the-risk-was-calculated/index.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>the-risk-was-calculated on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/the-risk-was-calculated/</link> + <description>Recent content in the-risk-was-calculated on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Mon, 02 Jan 2023 22:08:38 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/the-risk-was-calculated/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>The Risk Was Calculated</title> + <link>https://memes.sapka.me/the-risk-was-calculated/</link> + <pubDate>Mon, 02 Jan 2023 22:08:38 +0100</pubDate> + + <guid>https://memes.sapka.me/the-risk-was-calculated/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/tags/wojak/index.html b/public/tags/wojak/index.html new file mode 100644 index 0000000..1b99ea0 --- /dev/null +++ b/public/tags/wojak/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="wojak" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/tags/wojak/" /> + <meta property="og:image" content="https://memes.sapka.me/logo.png" /> + + <meta name="twitter:title" content="wojak"> + <meta name="twitter:image" content="https://memes.sapka.me/logo.png"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> wojak</h2> + + + + <article class="list"> + <a href="/i-know-that-feel-bro/"> + + + + <img alt="I Know That Feel Bro" src="https://memes.sapka.me/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png" width=350 height=323/> + </a> + </article> + + <article class="list"> + <a href="/30-year-old-boomer/"> + + + + <img alt="30 Year Old Boomer" src="https://memes.sapka.me/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg" width=350 height=210/> + </a> + </article> + + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/tags/wojak/index.xml b/public/tags/wojak/index.xml new file mode 100644 index 0000000..1e40ca1 --- /dev/null +++ b/public/tags/wojak/index.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>wojak on Michal's based meme collection</title> + <link>https://memes.sapka.me/tags/wojak/</link> + <description>Recent content in wojak on Michal's based meme collection</description> + <generator>Hugo -- gohugo.io</generator> + <language>en-us</language> + <lastBuildDate>Sun, 01 Jan 2023 21:12:10 +0100</lastBuildDate><atom:link href="https://memes.sapka.me/tags/wojak/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>I Know That Feel Bro</title> + <link>https://memes.sapka.me/i-know-that-feel-bro/</link> + <pubDate>Sun, 01 Jan 2023 21:12:10 +0100</pubDate> + + <guid>https://memes.sapka.me/i-know-that-feel-bro/</guid> + <description></description> + </item> + + <item> + <title>30 Year Old Boomer</title> + <link>https://memes.sapka.me/30-year-old-boomer/</link> + <pubDate>Sun, 01 Jan 2023 21:08:11 +0100</pubDate> + + <guid>https://memes.sapka.me/30-year-old-boomer/</guid> + <description></description> + </item> + + </channel> +</rss> diff --git a/public/the-risk-was-calculated.jpg b/public/the-risk-was-calculated.jpg Binary files differnew file mode 100644 index 0000000..be9931d --- /dev/null +++ b/public/the-risk-was-calculated.jpg diff --git a/public/the-risk-was-calculated/index.html b/public/the-risk-was-calculated/index.html new file mode 100644 index 0000000..15d325f --- /dev/null +++ b/public/the-risk-was-calculated/index.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<HTML lang="en"> + <HEAD> + <META charset="utf-8"> + <TITLE> + Michal's based meme collection + </TITLE> + <link rel='stylesheet' type='text/css' href='/style.css'> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="apple-touch-icon" sizes="180x180" href="https://memes.sapka.me/icons/apple-touch-icon.png"> + <link rel="icon" type="image/png" sizes="32x32" href="https://memes.sapka.me/icons/favicon-32x32.png"> + <link rel="icon" type="image/png" sizes="16x16" href="https://memes.sapka.me/icons/favicon-16x16.png"> + + <meta property="og:title" content="The Risk Was Calculated" /> + <meta property="og:type" content="website" /> + <meta property="og:url" content="https://memes.sapka.me/the-risk-was-calculated/" /> + <meta property="og:image" content="https://memes.sapka.me/the-risk-was-calculated.jpg" /> + + <meta name="twitter:title" content="The Risk Was Calculated"> + <meta name="twitter:image" content="https://memes.sapka.me/the-risk-was-calculated.jpg"> + <meta name="twitter:card" content="summary_large_image"> + + <link rel="canonical" href="https://memes.sapka.me"> + <link rel='alternate' type='application/rss+xml' title="Michal's based meme collection RSS" href='/index.xml'> + <meta name="robots" content="index, follow"> + <meta name="keywords" content="sfw, the-risk-was-calculated"> + </HEAD> + <BODY> + + <HEADER> + + + <a href="/"> + <img alt="logo" src="https://memes.sapka.me/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png" width=45 height=45/> + <div> + <h1>Michal's based meme collection</h1> + (because giphy sucks) + </div> + </a> + </HEADER> + + <MAIN> + + <h2> The Risk Was Calculated</h2> + + + + + +<img alt="The Risk Was Calculated" src="https://memes.sapka.me/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_790x0_resize_q75_box.jpg" width=790 height=558/><BR/> +<hr/> +added on January 2, 2023 with tags:<a href="https://memes.sapka.me/tags/sfw"> Sfw</a> · <a href="https://memes.sapka.me/tags/the-risk-was-calculated"> The-Risk-Was-Calculated</a></div> +<hr/> + +<div> <a class="prev-link" href="/i-know-that-feel-bro/"> ← Previous</a> </div> + + </MAIN> + + + <FOOTER> + <ASIDE> + <BR> + Terms and conditions + <OL> + <li> I don't care who you are so I won't track you. + <li> I have stolen all those memes so I have no rights to them. + <li> You will not kill my server. + </OL> + </ASIDE> + <div> + Created by <a href="https://sapka.me" target="_blank">Michal</a> + <BR> + <BR> + <a href="/index.xml"> + + + <img alt="rss" src="https://memes.sapka.me/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png" width=25 height=25/> + </a> + </div> + + </FOOTER> + + </BODY> +</HTML> diff --git a/public/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_350x0_resize_q75_box.jpg b/public/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..83077ac --- /dev/null +++ b/public/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_350x0_resize_q75_box.jpg diff --git a/public/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_790x0_resize_q75_box.jpg b/public/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e12e815 --- /dev/null +++ b/public/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_790x0_resize_q75_box.jpg diff --git a/resources/_gen/images/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg b/resources/_gen/images/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..f67fb7f --- /dev/null +++ b/resources/_gen/images/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_350x0_resize_q75_box.jpg diff --git a/resources/_gen/images/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg b/resources/_gen/images/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e055007 --- /dev/null +++ b/resources/_gen/images/30-year-old-boomer_hud5cdc46af395258da0f1e2cbeee8b51a_27119_790x0_resize_q75_box.jpg diff --git a/resources/_gen/images/challenging-wank_hu1e5b9d19794b0bfae17f06c376f9d01e_36628_350x0_resize_q75_box.jpg b/resources/_gen/images/challenging-wank_hu1e5b9d19794b0bfae17f06c376f9d01e_36628_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..0d58e3d --- /dev/null +++ b/resources/_gen/images/challenging-wank_hu1e5b9d19794b0bfae17f06c376f9d01e_36628_350x0_resize_q75_box.jpg diff --git a/resources/_gen/images/challenging-wank_hu1e5b9d19794b0bfae17f06c376f9d01e_36628_790x0_resize_q75_box.jpg b/resources/_gen/images/challenging-wank_hu1e5b9d19794b0bfae17f06c376f9d01e_36628_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e650723 --- /dev/null +++ b/resources/_gen/images/challenging-wank_hu1e5b9d19794b0bfae17f06c376f9d01e_36628_790x0_resize_q75_box.jpg diff --git a/resources/_gen/images/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif b/resources/_gen/images/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..29efcaa --- /dev/null +++ b/resources/_gen/images/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_350x0_resize_box.gif diff --git a/resources/_gen/images/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif b/resources/_gen/images/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif Binary files differnew file mode 100644 index 0000000..221331a --- /dev/null +++ b/resources/_gen/images/challenging-wank_hu81731d0d6f9e756a9b05d994c212a4e9_2861233_790x0_resize_box.gif diff --git a/resources/_gen/images/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg b/resources/_gen/images/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..7a8eaf9 --- /dev/null +++ b/resources/_gen/images/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_350x0_resize_q75_box.jpg diff --git a/resources/_gen/images/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_600x0_resize_q75_box.jpg b/resources/_gen/images/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_600x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..ddd6152 --- /dev/null +++ b/resources/_gen/images/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_600x0_resize_q75_box.jpg diff --git a/resources/_gen/images/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg b/resources/_gen/images/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..712f113 --- /dev/null +++ b/resources/_gen/images/forever-alone_hu56897781db0843ac61a9409d8cf0fed1_78902_790x0_resize_q75_box.jpg diff --git a/resources/_gen/images/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg b/resources/_gen/images/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..66d68ca --- /dev/null +++ b/resources/_gen/images/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_350x0_resize_q75_box.jpg diff --git a/resources/_gen/images/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg b/resources/_gen/images/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..d72082d --- /dev/null +++ b/resources/_gen/images/fuck-yea_hu8eeb32328371dd312b05df46a0130975_74403_790x0_resize_q75_box.jpg diff --git a/resources/_gen/images/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png b/resources/_gen/images/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..93507d6 --- /dev/null +++ b/resources/_gen/images/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_350x0_resize_box_3.png diff --git a/resources/_gen/images/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png b/resources/_gen/images/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..949dbf0 --- /dev/null +++ b/resources/_gen/images/i-know-that-feel-bro_hu5f1eba121c0eedeef425f1d98b4cb7f8_32104_790x0_resize_box_3.png diff --git a/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x20_resize_box_3.png b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x20_resize_box_3.png Binary files differnew file mode 100644 index 0000000..9fa014b --- /dev/null +++ b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x20_resize_box_3.png diff --git a/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x25_resize_box_3.png b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x25_resize_box_3.png Binary files differnew file mode 100644 index 0000000..cee4314 --- /dev/null +++ b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x25_resize_box_3.png diff --git a/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x30_resize_box_3.png b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x30_resize_box_3.png Binary files differnew file mode 100644 index 0000000..f35257c --- /dev/null +++ b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x30_resize_box_3.png diff --git a/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x35_resize_box_3.png b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x35_resize_box_3.png Binary files differnew file mode 100644 index 0000000..4818b01 --- /dev/null +++ b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x35_resize_box_3.png diff --git a/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png Binary files differnew file mode 100644 index 0000000..b303df5 --- /dev/null +++ b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_0x45_resize_box_3.png diff --git a/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_600x0_resize_box_3.png b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_600x0_resize_box_3.png Binary files differnew file mode 100644 index 0000000..efc1b2a --- /dev/null +++ b/resources/_gen/images/logo_hu854d4979f24f44fb1730c3fab6c9ef4f_4533_600x0_resize_box_3.png diff --git a/resources/_gen/images/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg b/resources/_gen/images/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..560c47e --- /dev/null +++ b/resources/_gen/images/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_350x0_resize_q75_box.jpg diff --git a/resources/_gen/images/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg b/resources/_gen/images/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..5801f43 --- /dev/null +++ b/resources/_gen/images/lol-wut_hu7612b2df18c35165c2a453d4e6910a66_42192_790x0_resize_q75_box.jpg diff --git a/resources/_gen/images/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg b/resources/_gen/images/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..109ecb6 --- /dev/null +++ b/resources/_gen/images/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_350x0_resize_q75_box.jpg diff --git a/resources/_gen/images/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg b/resources/_gen/images/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..8cef2e8 --- /dev/null +++ b/resources/_gen/images/no-ragrets_hub319c264a1744e88e8e8b7bb8bbf6313_35147_790x0_resize_q75_box.jpg diff --git a/resources/_gen/images/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg b/resources/_gen/images/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..eabb441 --- /dev/null +++ b/resources/_gen/images/orly_hu4ab5330843bc6be32869cd74da450d29_79346_350x0_resize_q75_box.jpg diff --git a/resources/_gen/images/orly_hu4ab5330843bc6be32869cd74da450d29_79346_600x0_resize_q75_box.jpg b/resources/_gen/images/orly_hu4ab5330843bc6be32869cd74da450d29_79346_600x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..ca4ea3b --- /dev/null +++ b/resources/_gen/images/orly_hu4ab5330843bc6be32869cd74da450d29_79346_600x0_resize_q75_box.jpg diff --git a/resources/_gen/images/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg b/resources/_gen/images/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e623e14 --- /dev/null +++ b/resources/_gen/images/orly_hu4ab5330843bc6be32869cd74da450d29_79346_790x0_resize_q75_box.jpg diff --git a/resources/_gen/images/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x20_resize_box_3.png b/resources/_gen/images/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x20_resize_box_3.png Binary files differnew file mode 100644 index 0000000..9f41e08 --- /dev/null +++ b/resources/_gen/images/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x20_resize_box_3.png diff --git a/resources/_gen/images/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png b/resources/_gen/images/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png Binary files differnew file mode 100644 index 0000000..4000c4b --- /dev/null +++ b/resources/_gen/images/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x25_resize_box_3.png diff --git a/resources/_gen/images/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x45_resize_box_3.png b/resources/_gen/images/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x45_resize_box_3.png Binary files differnew file mode 100644 index 0000000..9ec00ef --- /dev/null +++ b/resources/_gen/images/rss_hu3825b2cd5f1de2cefb2d2452c4fa574e_240532_0x45_resize_box_3.png diff --git a/resources/_gen/images/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg b/resources/_gen/images/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..9026cf2 --- /dev/null +++ b/resources/_gen/images/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_350x0_resize_q75_box.jpg diff --git a/resources/_gen/images/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg b/resources/_gen/images/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e736e31 --- /dev/null +++ b/resources/_gen/images/shit-im-into-it_hu618780d19be7768f547cf7684259d0ee_47017_790x0_resize_q75_box.jpg diff --git a/resources/_gen/images/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_350x0_resize_q75_box.jpg b/resources/_gen/images/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_350x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..83077ac --- /dev/null +++ b/resources/_gen/images/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_350x0_resize_q75_box.jpg diff --git a/resources/_gen/images/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_790x0_resize_q75_box.jpg b/resources/_gen/images/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_790x0_resize_q75_box.jpg Binary files differnew file mode 100644 index 0000000..e12e815 --- /dev/null +++ b/resources/_gen/images/the-risk-was-calculated_hu87d1a91cbb2d18fab72bbcc9357de40f_35687_790x0_resize_q75_box.jpg diff --git a/static/favicon.ico b/static/favicon.ico Binary files differnew file mode 100644 index 0000000..36de9d2 --- /dev/null +++ b/static/favicon.ico diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..4be1bf5 --- /dev/null +++ b/static/style.css @@ -0,0 +1,67 @@ + + body { + background-color:#020202; + color: #f2f2f2; + font-family: 'arial'; + padding: 0; + margin: 0; + } + img { + max-width: 99%; + width: auto; + height: auto; + } + main { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + } + header { + background-color: #121212; + padding-left: 50px; + height:55px; + } + header div { + padding-top: 12px; + } + header img { + margin-top: 2px; + position: absolute; + left: 5px; + } + a { + text-decoration: none; + color: #f2f2f2; + } + h1 { + font-size: 1.5em; + display: inline; + } + h2 { + font-size: 1.1em; + } + h4 { + font-size: 1.1em; + } + article.list { + display: inline-block; + } + article.list img { + margin: auto; + display: block; + } + .next-link { + float: right; + } + footer { + width: 800px; + max-width: 95%; + margin-left: auto; + margin-right: auto; + opacity: 0.5; + } + footer div { + text-align: center; + } + |