Skip to content

Commit

Permalink
ADD: images.simpleshare.dev with all sharing site icons
Browse files Browse the repository at this point in the history
  • Loading branch information
fileformat committed May 10, 2024
1 parent 6bcfb86 commit 2fc4564
Show file tree
Hide file tree
Showing 27 changed files with 124 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
images.simpleshare.dev
19 changes: 19 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#
# _config.yml for Google Cloud Icons
#

exclude: [ "CNAME", "**/*_src*" ]
permalink: /blog/:year/:month/:day/:title/index.:output_ext
production_url: https://images.simpleshare.dev
title: SimpleShare Icons
markdown: kramdown
plugins:
- jekyll-redirect-from
redirect_from:
json: false
theme: null
links:
- name: "Return to SimpleShare.dev"
url: "https://www.simpleshare.dev/"
- name: "Source"
url: "https://github.com/fileformat/simpleshare"
36 changes: 36 additions & 0 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{site.title}}</title>
<meta name="referrer" content="unsafe-url" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" />
<style>

footer {
margin-top: 0;
padding-top: 0;
text-align: center;
}
</style>
</head>
<body>
<main class="container">
<h1>
<img alt="logo" src="/favicon.svg" style="height:1.5em;vertical-align:top;" />&nbsp;
{{site.title}}
</h1>
<hr/>
<p><small>
{%- for link in site.links %}
{%- if forloop.index0 > 0 %} | {% endif %}
<a href="{{link.url}}" title="{{link.name}}">{{link.name}}</a>
{%- endfor %}
</small></p>
{{content}}
<hr/>
</main>
</body>
</html>
1 change: 1 addition & 0 deletions docs/_layouts/none.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{content}}
Binary file added docs/favicon.ico
Binary file not shown.
4 changes: 4 additions & 0 deletions docs/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/facebook-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/getpocket-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/google_plus-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/linkedin-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions docs/images/pico.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/images/pinboard-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/pinterest-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/reddit-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/stumbleupon-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/telegram-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/tumblr-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/twitter-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/vk-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/whatsapp-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/wordpress-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/xing-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/images/ycombinator-tile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: default
---
{% assign image_files = site.static_files | where: "extname", ".svg" | where_exp: "item", "item.path != '/favicon.svg'" | sort: "basename" %}
<p>
{% for myimage in image_files %}
<a href="{{myimage.path}}" title="{{myimage.basename}}"><img style="padding:5pt;height:72pt;" src="{{ myimage.path }}" alt="{{ myimage.basename }}"></a>
{% endfor %}
</p>
10 changes: 10 additions & 0 deletions docs/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: none
---
#
# robots.txt for {{site.production_url | slice: 8, 99}}
#

User-Agent: *
Disallow: /honeypot.txt
Allow: /
14 changes: 14 additions & 0 deletions docs/status.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: Status
noindex: true
layout: none
---
{%- assign image_files = site.static_files | where: "extname", ".svg" | where_exp: "item", "item.path != '/favicon.svg'" | sort: "basename" -%}
{
"success":true,
"message":"OK",
"commit":"{{site.github.build_revision | default: site.data.build_revision | default: 'null' | slice: 0, 7 }}",
"lastmod":"{{site.time|date_to_xmlschema}}",
"tech": "Jekyll {{site.github.versions.jekyll | default: site.data.jekyll_version | default: '(unknown)'}}",
"count": {{ image_files | size }}
}
10 changes: 10 additions & 0 deletions images-run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
#
# run Jekyll locally
#

set -o errexit
set -o pipefail
set -o nounset

jekyll serve --watch --source docs --port 4000

0 comments on commit 2fc4564

Please sign in to comment.