forked from GNUsocial/gnusocial.rocks
[V3] Add development blog
This commit is contained in:
parent
2da0114df1
commit
ef4b65df94
15
v3/.body.template
Normal file
15
v3/.body.template
Normal file
@ -0,0 +1,15 @@
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
1
v3/.body_index.template
Normal file
1
v3/.body_index.template
Normal file
@ -0,0 +1 @@
|
||||
|
24
v3/.config
Normal file
24
v3/.config
Normal file
@ -0,0 +1,24 @@
|
||||
# Blog title
|
||||
global_title="GNU social - Version 3"
|
||||
# The typical subtitle for each blog
|
||||
global_description="Development blog where we announce our progress."
|
||||
# The public base URL for this blog
|
||||
global_url="https://gnusocial.rocks/v3"
|
||||
|
||||
template_archive_title="Blog"
|
||||
|
||||
# Your name
|
||||
global_author="GNU social development team"
|
||||
global_author_url="https://www.gnusocial.rocks/"
|
||||
global_email="mail@diogo.site"
|
||||
|
||||
# CC by-nc-nd is a good starting point, you can change this to "©" for Copyright
|
||||
global_license="<a href="https://creativecommons.org/licenses/by-sa/4.0/">Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)</a>"
|
||||
|
||||
header_file=".header.template"
|
||||
footer_file=".footer.template"
|
||||
body_begin_file=".body.template"
|
||||
body_begin_file_index=".body_index.template"
|
||||
number_of_index_articles="5"
|
||||
index_file="latest_five.html"
|
||||
archive_index="index.html"
|
5
v3/.footer.template
Normal file
5
v3/.footer.template
Normal file
@ -0,0 +1,5 @@
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
</footer>
|
||||
</div>
|
11
v3/.header.template
Normal file
11
v3/.header.template
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="https://gnusocial.rocks/assets/css/style.css">
|
1450
v3/Markdown.pl
Executable file
1450
v3/Markdown.pl
Executable file
File diff suppressed because it is too large
Load Diff
79
v3/all_tags.html
Normal file
79
v3/all_tags.html
Normal file
@ -0,0 +1,79 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="https://gnusocial.rocks/assets/css/style.css">
|
||||
<style>
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<title>All tags - GNU social - Version 3</title>
|
||||
</head><body>
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
<div id="divbodyholder">
|
||||
<div class="headerholder"><div class="header">
|
||||
<div id="title">
|
||||
<h1 class="nomargin"><a class="ablack" href="https://gnusocial.rocks/v3/latest_five.html">GNU social - Version 3</a></h1>
|
||||
<div id="description">Development blog where we announce our progress.</div>
|
||||
</div></div></div>
|
||||
<div id="divbody"><div class="content">
|
||||
<h3>All tags</h3>
|
||||
<ul>
|
||||
<li><a href="tag_beware-with-underscores-in-markdown.html">beware-with-underscores-in-markdown</a> — 1 post</li>
|
||||
<li><a href="tag_example.html">example</a> — 1 post</li>
|
||||
<li><a href="tag_keep-this-tag-format.html">keep-this-tag-format</a> — 1 post</li>
|
||||
<li><a href="tag_tags-are-optional.html">tags-are-optional</a> — 1 post</li>
|
||||
</ul>
|
||||
<div id="all_posts"><a href="index.html">Blog</a> — <a href="feed.rss">Subscribe</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
</footer>
|
||||
</div>
|
||||
</div></div>
|
||||
</body></html>
|
97
v3/blog.css
Normal file
97
v3/blog.css
Normal file
@ -0,0 +1,97 @@
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
|
||||
#title{display:none;}
|
||||
a.ablack{color:black !important;}
|
||||
h3.links_header a{
|
||||
color:black !important;
|
||||
}
|
||||
h3.links_header {
|
||||
margin-top: 0 !important;
|
||||
font-size: 14px;
|
||||
}
|
||||
#links {
|
||||
border: solid 1px #ccc;
|
||||
padding: 1em 1em 0 1em;
|
||||
font-size: 12px;
|
||||
}
|
||||
.link_date{font-weight: bold;}
|
||||
li{margin-bottom:8px;}
|
||||
ul,ol{margin-left:24px;margin-right:24px;}
|
||||
#all_posts{margin-top:24px;text-align:center;}
|
||||
.subtitle{font-size:small;margin:12px 0px;}
|
||||
.content p{/*margin-left:24px;*/margin-right:24px;}
|
||||
#description{font-size:large;margin-bottom:12px;}
|
||||
h3{margin-top:42px;margin-bottom:8px;}
|
||||
h4{margin-left:12px;margin-right:24px; padding-top: 8px; font-size: 20px;}
|
||||
#twitter{line-height:20px;vertical-align:top;text-align:right;font-style:italic;color:#333;margin-top:24px;font-size:14px;}
|
||||
.separator{text-align:center;padding:24px;font-size:10px;}
|
||||
.content img { max-width: 100%; }
|
||||
.permalink {font-size:small; margin-left: 8px;}
|
||||
.link-section {
|
||||
line-height: 0.25;
|
||||
text-align: center;
|
||||
font-size: 24px;
|
||||
margin: 48px 0px;
|
||||
}
|
||||
.link-section span {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
.link-section span:before,
|
||||
.link-section span:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
height: 5px;
|
||||
border-bottom: 1px solid;
|
||||
border-top: 1px solid;
|
||||
top: 0;
|
||||
width: 25%;
|
||||
}
|
||||
.link-section span:before {
|
||||
right: 100%;
|
||||
margin-right: 15px;
|
||||
}
|
||||
.link-section span:after {
|
||||
left: 100%;
|
||||
margin-left: 15px;
|
||||
}
|
||||
.video-container {
|
||||
position: relative;
|
||||
padding-bottom: 56.25%;
|
||||
padding-top: 30px; height: 0; overflow: hidden;
|
||||
}
|
||||
|
||||
.video-container iframe,
|
||||
.video-container object,
|
||||
.video-container embed {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
97
v3/cenas/index.html
Normal file
97
v3/cenas/index.html
Normal file
@ -0,0 +1,97 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>GNU social — Version 3</title>
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<style>
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
|
||||
<h2 class="content-head is-center">Version 3</h2>
|
||||
<h3>Abstract</h3>
|
||||
GNU social is the eldest free social networking platform for public and private communications used in federated social networks. It's versatile, extensible and privacy focused. We've been modernizing the existing codebase, ensuring inter-operationality as defined by the IndieWeb and we're developing a modern frontend. This makes GNU social accessible: easy to install and use, and follows AnyBrowser and A11Y guidelines.
|
||||
|
||||
Our objective is to further differentiate GNU social from the alternative software available, either FOSS or Proprietary/Centralized while setting an example of how a secure, performant and plug-and-play software should be in modern day's web.
|
||||
|
||||
<p>We are being supported by <a href="https://nlnet.nl/project/GNUSocial/">NLnet</a>.</p>
|
||||
<h3>Milestones</h3>
|
||||
<ul>
|
||||
<li><a href="https://agile.gnusocial.rocks/doku.php?id=initial_test_documentation_infrastructure">Initial test and documentation infrastructure</a> (WIP)</li>
|
||||
<li>Expand our support for tags, be it in posts and in actors (people, groups, etc)</li>
|
||||
<li>Port over the v2 federation stack to v3</li>
|
||||
<li>New functionality:
|
||||
<ul>
|
||||
<li>Implement Companies/Celebrities actor type as Service</li>
|
||||
<li>Pinned Activities (plugin)</li>
|
||||
<li>More sorting options</li>
|
||||
<li>Publication language with defaults per group and easy switch on posting</li>
|
||||
<li>Album of Images and Videos</li>
|
||||
<li>Markdown</li>
|
||||
<li>Server-side rendered-to-svg LaTeX</li>
|
||||
<li>Posts with titles</li>
|
||||
</ul>
|
||||
<li><a href="https://agile.gnusocial.rocks/doku.php?id=attachment_media_embed_handling_done"><s>Media handling, such as thumbnails, compression, and quota and
|
||||
permission checking</s></a></li>
|
||||
<li>External APIs.</li>
|
||||
<li>New Groups specification</li>
|
||||
<li>Better timelines</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
23
v3/feed.rss
Normal file
23
v3/feed.rss
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<channel><title>GNU social - Version 3</title><link>https://gnusocial.rocks/v3/latest_five.html</link>
|
||||
<description>Development blog where we announce our progress.</description><language>en</language>
|
||||
<lastBuildDate>Mon, 16 Aug 2021 13:04:47 +0100</lastBuildDate>
|
||||
<pubDate>Mon, 16 Aug 2021 13:04:47 +0100</pubDate>
|
||||
<atom:link href="https://gnusocial.rocks/v3/feed.rss" rel="self" type="application/rss+xml" />
|
||||
<item><title>
|
||||
Title on this line
|
||||
</title><description><![CDATA[
|
||||
|
||||
<p>The rest of the text file is a <strong>Markdown</strong> blog post. The process will continue
|
||||
as soon as you exit your editor.</p>
|
||||
|
||||
<p>Tags: <a href='tag_keep-this-tag-format.html'>keep-this-tag-format</a>, <a href='tag_tags-are-optional.html'>tags-are-optional</a>, <a href='tag_beware-with-underscores-in-markdown.html'>beware-with-underscores-in-markdown</a>, <a href='tag_example.html'>example</a></p>
|
||||
|
||||
|
||||
<!-- text end -->
|
||||
]]></description><link>https://gnusocial.rocks/v3/title-on-this-line.html</link>
|
||||
<guid>https://gnusocial.rocks/v3/./title-on-this-line.html</guid>
|
||||
<dc:creator>GNU social development team</dc:creator>
|
||||
<pubDate>Mon, 16 Aug 2021 12:57:49 +0100</pubDate></item>
|
||||
</channel></rss>
|
134
v3/index.html
134
v3/index.html
@ -1,97 +1,91 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>GNU social — Version 3</title>
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<style>
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="https://gnusocial.rocks/assets/css/style.css">
|
||||
<title>Blog - GNU social - Version 3
|
||||
</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<a class="pure-menu-heading" href="/">GNU social
|
||||
</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
<li class="pure-menu-item pure-menu-selected">
|
||||
<a href="#" class="pure-menu-link">Version 3
|
||||
</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository
|
||||
</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage
|
||||
</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation
|
||||
</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki
|
||||
</a>
|
||||
</li>
|
||||
<li class="pure-menu-item">
|
||||
<a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
|
||||
<h2 class="content-head is-center">Version 3</h2>
|
||||
<h3>Abstract</h3>
|
||||
GNU social is the eldest free social networking platform for public and private communications used in federated social networks. It's versatile, extensible and privacy focused. We've been modernizing the existing codebase, ensuring inter-operationality as defined by the IndieWeb and we're developing a modern frontend. This makes GNU social accessible: easy to install and use, and follows AnyBrowser and A11Y guidelines.
|
||||
|
||||
Our objective is to further differentiate GNU social from the alternative software available, either FOSS or Proprietary/Centralized while setting an example of how a secure, performant and plug-and-play software should be in modern day's web.
|
||||
|
||||
<p>We are being supported by <a href="https://nlnet.nl/project/GNUSocial/">NLnet</a>.</p>
|
||||
<h3>Milestones</h3>
|
||||
<div id="divbodyholder">
|
||||
<div class="headerholder">
|
||||
<div class="header">
|
||||
<div id="title">
|
||||
<h1 class="nomargin">
|
||||
<a class="ablack" href="https://gnusocial.rocks/v3/latest_five.html">GNU social - Version 3
|
||||
</a>
|
||||
</h1>
|
||||
<div id="description">Development blog where we announce our progress.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="divbody">
|
||||
<div class="content">
|
||||
<h3>Blog
|
||||
</h3>
|
||||
<h4 class='allposts_header'>August 2021
|
||||
</h4>
|
||||
<ul>
|
||||
<li><a href="https://agile.gnusocial.rocks/doku.php?id=initial_test_documentation_infrastructure">Initial test and documentation infrastructure</a> (WIP)</li>
|
||||
<li>Expand our support for tags, be it in posts and in actors (people, groups, etc)</li>
|
||||
<li>Port over the v2 federation stack to v3</li>
|
||||
<li>New functionality:
|
||||
<ul>
|
||||
<li>Implement Companies/Celebrities actor type as Service</li>
|
||||
<li>Pinned Activities (plugin)</li>
|
||||
<li>More sorting options</li>
|
||||
<li>Publication language with defaults per group and easy switch on posting</li>
|
||||
<li>Album of Images and Videos</li>
|
||||
<li>Markdown</li>
|
||||
<li>Server-side rendered-to-svg LaTeX</li>
|
||||
<li>Posts with titles</li>
|
||||
<li>
|
||||
<a href="./title-on-this-line.html">Title on this line
|
||||
</a> — August 16, 2021
|
||||
</li>
|
||||
</ul>
|
||||
<li><a href="https://agile.gnusocial.rocks/doku.php?id=attachment_media_embed_handling_done"><s>Media handling, such as thumbnails, compression, and quota and
|
||||
permission checking</s></a></li>
|
||||
<li>External APIs.</li>
|
||||
<li>New Groups specification</li>
|
||||
<li>Better timelines</li>
|
||||
</ul>
|
||||
|
||||
<div id="all_posts">
|
||||
<a href="all_tags.html">All tags
|
||||
</a> —
|
||||
<a href="feed.rss">Subscribe
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
This site's source is
|
||||
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here
|
||||
</a>.
|
||||
</footer>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
89
v3/latest_five.html
Normal file
89
v3/latest_five.html
Normal file
@ -0,0 +1,89 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="https://gnusocial.rocks/assets/css/style.css">
|
||||
<style>
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<title>GNU social - Version 3 - GNU social - Version 3</title>
|
||||
</head><body>
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
|
||||
<div id="divbodyholder">
|
||||
<div class="headerholder"><div class="header">
|
||||
<div id="title">
|
||||
<h1 class="nomargin"><a class="ablack" href="https://gnusocial.rocks/v3/latest_five.html">GNU social - Version 3</a></h1>
|
||||
<div id="description">Development blog where we announce our progress.</div>
|
||||
</div></div></div>
|
||||
<div id="divbody"><div class="content">
|
||||
<h3><a class="ablack" href="title-on-this-line.html">
|
||||
Title on this line
|
||||
</a></h3>
|
||||
<!-- bashblog_timestamp: #202108161257.49# -->
|
||||
<div class="subtitle">August 16, 2021 —
|
||||
GNU social development team
|
||||
</div>
|
||||
<!-- text begin -->
|
||||
|
||||
<p>The rest of the text file is a <strong>Markdown</strong> blog post. The process will continue
|
||||
as soon as you exit your editor.</p>
|
||||
|
||||
<p>Tags: <a href='tag_keep-this-tag-format.html'>keep-this-tag-format</a>, <a href='tag_tags-are-optional.html'>tags-are-optional</a>, <a href='tag_beware-with-underscores-in-markdown.html'>beware-with-underscores-in-markdown</a>, <a href='tag_example.html'>example</a></p>
|
||||
|
||||
|
||||
<!-- text end -->
|
||||
<div id="all_posts"><a href="index.html">View more posts</a> — <a href="all_tags.html">All tags</a> — <a href="feed.rss">Subscribe</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
</footer>
|
||||
</div>
|
||||
</div></div>
|
||||
</body></html>
|
16
v3/main.css
Normal file
16
v3/main.css
Normal file
@ -0,0 +1,16 @@
|
||||
body{font-family:Georgia,"Times New Roman",Times,serif;margin:0;padding:0;background-color:#F3F3F3;}
|
||||
#divbodyholder{padding:5px;background-color:#DDD;width:100%;max-width:874px;margin:24px auto;}
|
||||
#divbody{border:solid 1px #ccc;background-color:#fff;padding:0px 48px 24px 48px;top:0;}
|
||||
.headerholder{background-color:#f9f9f9;border-top:solid 1px #ccc;border-left:solid 1px #ccc;border-right:solid 1px #ccc;}
|
||||
.header{width:100%;max-width:800px;margin:0px auto;padding-top:24px;padding-bottom:8px;}
|
||||
.content{margin-bottom:5%;}
|
||||
.nomargin{margin:0;}
|
||||
.description{margin-top:10px;border-top:solid 1px #666;padding:10px 0;}
|
||||
h3{font-size:20pt;width:100%;font-weight:bold;margin-top:32px;margin-bottom:0;}
|
||||
.clear{clear:both;}
|
||||
#footer{padding-top:10px;border-top:solid 1px #666;color:#333333;text-align:center;font-size:small;font-family:"Courier New","Courier",monospace;}
|
||||
a{text-decoration:none;color:#003366 !important;}
|
||||
a:visited{text-decoration:none;color:#336699 !important;}
|
||||
blockquote{background-color:#f9f9f9;border-left:solid 4px #e9e9e9;margin-left:12px;padding:12px 12px 12px 24px;}
|
||||
blockquote img{margin:12px 0px;}
|
||||
blockquote iframe{margin:12px 0px;}
|
87
v3/tag_beware-with-underscores-in-markdown.html
Normal file
87
v3/tag_beware-with-underscores-in-markdown.html
Normal file
@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="https://gnusocial.rocks/assets/css/style.css">
|
||||
<style>
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<title>GNU social - Version 3 — Posts tagged "beware-with-underscores-in-markdown" - GNU social - Version 3</title>
|
||||
</head><body>
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
<div id="divbodyholder">
|
||||
<div class="headerholder"><div class="header">
|
||||
<div id="title">
|
||||
<h1 class="nomargin"><a class="ablack" href="https://gnusocial.rocks/v3/latest_five.html">GNU social - Version 3</a></h1>
|
||||
<div id="description">Development blog where we announce our progress.</div>
|
||||
</div></div></div>
|
||||
<div id="divbody"><div class="content">
|
||||
<h3><a class="ablack" href="title-on-this-line.html">
|
||||
Title on this line
|
||||
</a></h3>
|
||||
<!-- bashblog_timestamp: #202108161257.49# -->
|
||||
<div class="subtitle">August 16, 2021 —
|
||||
GNU social development team
|
||||
</div>
|
||||
<!-- text begin -->
|
||||
|
||||
<p>The rest of the text file is a <strong>Markdown</strong> blog post. The process will continue
|
||||
as soon as you exit your editor.</p>
|
||||
|
||||
<p>Tags: <a href='tag_keep-this-tag-format.html'>keep-this-tag-format</a>, <a href='tag_tags-are-optional.html'>tags-are-optional</a>, <a href='tag_beware-with-underscores-in-markdown.html'>beware-with-underscores-in-markdown</a>, <a href='tag_example.html'>example</a></p>
|
||||
|
||||
|
||||
<!-- text end -->
|
||||
</div>
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
</footer>
|
||||
</div>
|
||||
</div></div>
|
||||
</body></html>
|
87
v3/tag_example.html
Normal file
87
v3/tag_example.html
Normal file
@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="https://gnusocial.rocks/assets/css/style.css">
|
||||
<style>
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<title>GNU social - Version 3 — Posts tagged "example" - GNU social - Version 3</title>
|
||||
</head><body>
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
<div id="divbodyholder">
|
||||
<div class="headerholder"><div class="header">
|
||||
<div id="title">
|
||||
<h1 class="nomargin"><a class="ablack" href="https://gnusocial.rocks/v3/latest_five.html">GNU social - Version 3</a></h1>
|
||||
<div id="description">Development blog where we announce our progress.</div>
|
||||
</div></div></div>
|
||||
<div id="divbody"><div class="content">
|
||||
<h3><a class="ablack" href="title-on-this-line.html">
|
||||
Title on this line
|
||||
</a></h3>
|
||||
<!-- bashblog_timestamp: #202108161257.49# -->
|
||||
<div class="subtitle">August 16, 2021 —
|
||||
GNU social development team
|
||||
</div>
|
||||
<!-- text begin -->
|
||||
|
||||
<p>The rest of the text file is a <strong>Markdown</strong> blog post. The process will continue
|
||||
as soon as you exit your editor.</p>
|
||||
|
||||
<p>Tags: <a href='tag_keep-this-tag-format.html'>keep-this-tag-format</a>, <a href='tag_tags-are-optional.html'>tags-are-optional</a>, <a href='tag_beware-with-underscores-in-markdown.html'>beware-with-underscores-in-markdown</a>, <a href='tag_example.html'>example</a></p>
|
||||
|
||||
|
||||
<!-- text end -->
|
||||
</div>
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
</footer>
|
||||
</div>
|
||||
</div></div>
|
||||
</body></html>
|
87
v3/tag_keep-this-tag-format.html
Normal file
87
v3/tag_keep-this-tag-format.html
Normal file
@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="https://gnusocial.rocks/assets/css/style.css">
|
||||
<style>
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<title>GNU social - Version 3 — Posts tagged "keep-this-tag-format" - GNU social - Version 3</title>
|
||||
</head><body>
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
<div id="divbodyholder">
|
||||
<div class="headerholder"><div class="header">
|
||||
<div id="title">
|
||||
<h1 class="nomargin"><a class="ablack" href="https://gnusocial.rocks/v3/latest_five.html">GNU social - Version 3</a></h1>
|
||||
<div id="description">Development blog where we announce our progress.</div>
|
||||
</div></div></div>
|
||||
<div id="divbody"><div class="content">
|
||||
<h3><a class="ablack" href="title-on-this-line.html">
|
||||
Title on this line
|
||||
</a></h3>
|
||||
<!-- bashblog_timestamp: #202108161257.49# -->
|
||||
<div class="subtitle">August 16, 2021 —
|
||||
GNU social development team
|
||||
</div>
|
||||
<!-- text begin -->
|
||||
|
||||
<p>The rest of the text file is a <strong>Markdown</strong> blog post. The process will continue
|
||||
as soon as you exit your editor.</p>
|
||||
|
||||
<p>Tags: <a href='tag_keep-this-tag-format.html'>keep-this-tag-format</a>, <a href='tag_tags-are-optional.html'>tags-are-optional</a>, <a href='tag_beware-with-underscores-in-markdown.html'>beware-with-underscores-in-markdown</a>, <a href='tag_example.html'>example</a></p>
|
||||
|
||||
|
||||
<!-- text end -->
|
||||
</div>
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
</footer>
|
||||
</div>
|
||||
</div></div>
|
||||
</body></html>
|
87
v3/tag_tags-are-optional.html
Normal file
87
v3/tag_tags-are-optional.html
Normal file
@ -0,0 +1,87 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="https://gnusocial.rocks/assets/css/style.css">
|
||||
<style>
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<title>GNU social - Version 3 — Posts tagged "tags-are-optional" - GNU social - Version 3</title>
|
||||
</head><body>
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
<div id="divbodyholder">
|
||||
<div class="headerholder"><div class="header">
|
||||
<div id="title">
|
||||
<h1 class="nomargin"><a class="ablack" href="https://gnusocial.rocks/v3/latest_five.html">GNU social - Version 3</a></h1>
|
||||
<div id="description">Development blog where we announce our progress.</div>
|
||||
</div></div></div>
|
||||
<div id="divbody"><div class="content">
|
||||
<h3><a class="ablack" href="title-on-this-line.html">
|
||||
Title on this line
|
||||
</a></h3>
|
||||
<!-- bashblog_timestamp: #202108161257.49# -->
|
||||
<div class="subtitle">August 16, 2021 —
|
||||
GNU social development team
|
||||
</div>
|
||||
<!-- text begin -->
|
||||
|
||||
<p>The rest of the text file is a <strong>Markdown</strong> blog post. The process will continue
|
||||
as soon as you exit your editor.</p>
|
||||
|
||||
<p>Tags: <a href='tag_keep-this-tag-format.html'>keep-this-tag-format</a>, <a href='tag_tags-are-optional.html'>tags-are-optional</a>, <a href='tag_beware-with-underscores-in-markdown.html'>beware-with-underscores-in-markdown</a>, <a href='tag_example.html'>example</a></p>
|
||||
|
||||
|
||||
<!-- text end -->
|
||||
</div>
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
</footer>
|
||||
</div>
|
||||
</div></div>
|
||||
</body></html>
|
89
v3/title-on-this-line.html
Normal file
89
v3/title-on-this-line.html
Normal file
@ -0,0 +1,89 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/pure-min.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.5/build/grids-responsive-min.css">
|
||||
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
|
||||
<link rel="stylesheet" href="https://gnusocial.rocks/assets/css/style.css">
|
||||
<style>
|
||||
.content-wrapper {
|
||||
top: 2em;
|
||||
}
|
||||
s {
|
||||
text-decoration-color:rgba(0, 255, 0, 0.5)
|
||||
}
|
||||
@media (min-width: 600px) {
|
||||
s {
|
||||
position: relative;
|
||||
text-decoration: none;
|
||||
}
|
||||
s::after {
|
||||
content: "";
|
||||
line-height: 1em;
|
||||
margin-top: calc(0.125em / 2 * -1);
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
border-top: 0.125em solid rgba(0, 255, 0, 0.5);
|
||||
height: calc(50% - 1px);
|
||||
width: 100%;
|
||||
transform: rotateZ(-1deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<title>Title on this line - GNU social - Version 3</title>
|
||||
</head><body>
|
||||
<header class="header">
|
||||
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
|
||||
<a class="pure-menu-heading" href="/">GNU social</a>
|
||||
<ul class="pure-menu-list">
|
||||
<li class="pure-menu-item pure-menu-selected"><a href="#" class="pure-menu-link">Version 3</a></li>
|
||||
<li class="pure-menu-item"><a href="https://code.gnusocial.rocks/" class="pure-menu-link">Repository</a></li>
|
||||
<li class="pure-menu-item"><a href="https://coverage.gnusocial.rocks/" class="pure-menu-link">Code Coverage</a></li>
|
||||
<li class="pure-menu-item"><a href="https://docs.gnusocial.rocks/" class="pure-menu-link">Documentation</a></li>
|
||||
<li class="pure-menu-item"><a href="https://agile.gnusocial.rocks/" class="pure-menu-link">Wiki</a></li>
|
||||
<li class="pure-menu-item"><a href="https://kanban.undefinedhackers.net/?controller=BoardViewController&action=readonly&token=d2293e55cabae7cceff9fb496c651328195357d392b9e61a9f229ed6d463" class="pure-menu-link">Roadmap</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div class="content-wrapper">
|
||||
<div class="content">
|
||||
<div id="divbodyholder">
|
||||
<div class="headerholder"><div class="header">
|
||||
<div id="title">
|
||||
<h1 class="nomargin"><a class="ablack" href="https://gnusocial.rocks/v3/latest_five.html">GNU social - Version 3</a></h1>
|
||||
<div id="description">Development blog where we announce our progress.</div>
|
||||
</div></div></div>
|
||||
<div id="divbody"><div class="content">
|
||||
<!-- entry begin -->
|
||||
<h3><a class="ablack" href="title-on-this-line.html">
|
||||
Title on this line
|
||||
</a></h3>
|
||||
<!-- bashblog_timestamp: #202108161257.49# -->
|
||||
<div class="subtitle">August 16, 2021 —
|
||||
GNU social development team
|
||||
</div>
|
||||
<!-- text begin -->
|
||||
|
||||
<p>The rest of the text file is a <strong>Markdown</strong> blog post. The process will continue
|
||||
as soon as you exit your editor.</p>
|
||||
|
||||
<p>Tags: <a href='tag_keep-this-tag-format.html'>keep-this-tag-format</a>, <a href='tag_tags-are-optional.html'>tags-are-optional</a>, <a href='tag_beware-with-underscores-in-markdown.html'>beware-with-underscores-in-markdown</a>, <a href='tag_example.html'>example</a></p>
|
||||
|
||||
|
||||
<!-- text end -->
|
||||
<!-- entry end -->
|
||||
</div>
|
||||
</div>
|
||||
<footer class="l-box is-center">
|
||||
This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
|
||||
</footer>
|
||||
</div>
|
||||
</div></div>
|
||||
</body></html>
|
6
v3/title-on-this-line.md
Normal file
6
v3/title-on-this-line.md
Normal file
@ -0,0 +1,6 @@
|
||||
Title on this line
|
||||
|
||||
The rest of the text file is a **Markdown** blog post. The process will continue
|
||||
as soon as you exit your editor.
|
||||
|
||||
Tags: keep-this-tag-format, tags-are-optional, beware-with-underscores-in-markdown, example
|
Loading…
Reference in New Issue
Block a user