[CSS] Polished blog, docs, and soc CSS

This commit is contained in:
Eliseu Amaro 2022-02-25 21:22:57 +00:00 committed by Diogo Peralta Cordeiro
parent 68dce55907
commit 3978c7e2df
Signed by: diogo
GPG Key ID: 18D2D35001FBFAB0
34 changed files with 1072 additions and 934 deletions

View File

@ -1,171 +1,84 @@
/* * {
* -- BASE STYLES --
* Most of these are inherited from Base, but I want to change a few.
*/
body, html {
background-color: #FFF;
}
s {
text-decoration-color:rgba(0, 255, 0, 0.5)
}
@media screen and (max-width: 1366px) {
header {
all: unset !important;
z-index: 1 !important;
position: fixed;
top: 0;
left: 0;
width: 100%;
}
.home-menu {
height: min-content !important;
}
.sidebar {
all: unset;
background-color: #221E22;
display: block;
box-sizing: border-box; box-sizing: border-box;
width: 100%;
height: min-content !important;
margin-bottom: 1rem;
-webkit-box-shadow: 2px 5px 16px 0px rgba(34, 30, 34, 0.4), 17px 26px 15px 0px rgba(0,0,0,0) !important;
box-shadow: 2px 5px 16px 0px rgba(34, 30, 34, 0.4), 17px 26px 15px 0px rgba(0,0,0,0) !important;
}
.content-wrapper,
#template-wrapper {
max-width: 100% !important;
width: 100% !important;
margin-left: unset !important;
padding: 0 1rem 0 1rem !important;
}
.template-unit img {
max-width:100% !important;
}
.footer {
margin-left: unset !important;
margin-top: 2rem !important;
}
}
@media screen and (min-width: 600px) {
s {
position: relative;
text-decoration: none; text-decoration: none;
} appearance: 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);
}
} }
body, html {
display: flex;
flex-direction: column;
line-height: 1.4em;
height: 100vh;
}
#title{display:none;}
/*
* -- HEADER --
*/
header { header {
/* maximum z-index found */
all: unset;
box-sizing: border-box;
position: fixed; position: fixed;
background-color: #221E22; background-color: #201E1F;
width: 12vw; width: 22vw;
height: 100vh; height: 100vh;
top: 0; top: 0;
left: 12vw;
-webkit-box-shadow: 2px 5px 16px 0px rgba(34, 30, 34, 0.4), 17px 26px 15px 0px rgba(0,0,0,0); -webkit-box-shadow: 2px 5px 16px 0px rgba(34, 30, 34, 0.4),
box-shadow: 2px 5px 16px 0px rgba(34, 30, 34, 0.4), 17px 26px 15px 0px rgba(0,0,0,0); 17px 26px 15px 0px rgba(0, 0, 0, 0);
} box-shadow: 2px 5px 16px 0px rgba(34, 30, 34, 0.4),
header * { 17px 26px 15px 0px rgba(0, 0, 0, 0);
margin: 0;
} }
header ul li { header b {
all: unset;
display: flex;
flex-direction: column;
text-decoration: none;
}
header ul li a {
margin: 0;
}
.home-menu {
font-size: 1.4rem;
font-weight: bold; font-weight: bold;
}
max-height: 3rem; header a {
display: block;
width: 100%;
}
display: flex; header .menu-list {
align-items: center; margin-top: 1rem;
flex-direction: column; }
justify-content: space-between;
.header-main {
margin: 0.666em;
border-radius: 3px 0.666em 0.666em 3px;
font-size: 1.802rem;
background: #a22430; background: #a22430;
padding: 1rem; padding: 6px 12px;
width: 100%;
color: #f6f4f6;
-webkit-box-shadow: 2px 5px 16px 0px rgba(34, 30, 34, 0.4),
17px 26px 15px 0px rgba(0, 0, 0, 0);
box-shadow: 2px 5px 16px 0px rgba(34, 30, 34, 0.4),
17px 26px 15px 0px rgba(0, 0, 0, 0);
} }
.menu-heading { .header-main * {
font-size: inherit; color: #f6f4f6;
display: flex;
align-items: center;
color: #F6F4F6;
} }
.menu-heading img {
.header-main img {
height: 1em; height: 1em;
margin-right: 4px; margin-right: 4px;
} }
.menu-link { .menu-link {
line-height: 2.5rem; color: #f6f4f6;
color: #F6F4F6;
} }
.menu-link:hover, .menu-link:focus {
color: #C8BCC8; .menu-link:hover,
.menu-link:focus {
color: #c8bcc8;
transition: 500ms ease-in-out; transition: 500ms ease-in-out;
} }
.menu-selected, .menu-selected>a { .menu-selected,
text-decoration-line: underline !important; .menu-selected > a {
color: #fff; color: #fff;
font-weight:bolder font-weight: bolder;
}
.sidebar {
padding: 1rem;
} }
.content-wrapper, .content-wrapper,
#template-wrapper { #template-wrapper {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin-left: auto; margin-left: 22vw;
padding: 1.802rem 11vw;
margin-right: auto; margin-right: auto;
max-width: 44vw;
padding: 1rem;
} }
#template-wrapper:first-of-type { #template-wrapper:first-of-type {
padding-top: 1rem; padding-top: 1rem;
@ -173,10 +86,9 @@ header ul li a {
#template-wrapper:last-of-type { #template-wrapper:last-of-type {
padding-bottom: 1rem; padding-bottom: 1rem;
} }
.template-unit { .template-unit {
padding-top: 1rem; padding-top: 1rem;
border-top: 2px solid #221E2233; border-top: 2px solid #221e2233;
} }
.template-unit h3 { .template-unit h3 {
margin-top: 0 !important; margin-top: 0 !important;
@ -201,38 +113,79 @@ header ul li a {
.allposts_header + ul :last-child { .allposts_header + ul :last-child {
margin-bottom: 1rem; margin-bottom: 1rem;
} }
ul li {
margin: 1rem;
margin-left: 2rem;
}
.subtitle { .subtitle {
margin-bottom: 2rem; margin-bottom: 2rem;
} }
pre, blockquote { .content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6,
.content-wrapper label {
font-family: "open_sansbold";
font-weight: bold;
}
pre,
blockquote {
color: #666666; color: #666666;
margin: 0; margin: 0;
padding-left: 3em; padding-left: 3em;
border-left: 0.5em #EEE solid; border-left: 0.5em #eee solid;
} }
pre { pre {
font-family: monospace; font-family: monospace;
margin-bottom: 1rem; margin-bottom: 1rem;
white-space: pre; white-space: pre;
overflow-x: scroll; overflow-x: scroll;
} }
.footer {
margin-left: 24vw; s:after {
margin-right: auto; font-size: 0.66em;
margin-top: auto; content: '\2713';
padding: 1rem; background: #3f3b3b;
background-color: #333333; padding: 0 4px;
color: #e9eaed; border-radius: 3px;
margin-left: 4px;
color: limegreen;
} }
.footer a { footer {
font-family: 'open_sansbold'; padding: 1rem;
background-color: #201E1F;
color: #e9eaed;
margin-left: 22vw;
}
footer a {
font-family: "open_sansbold";
font-weight: bold; font-weight: bold;
color: #e9eaed; color: #e9eaed;
} }
@media screen and (max-width: 767px) {
header {
box-sizing: border-box;
position: relative;
background-color: #201E1F;
width: 100vw;
height: max-content;
padding-bottom: 1rem;
}
.header-main {
margin: 0;
}
.content-wrapper,
#template-wrapper {
margin-left: 0;
padding: 1rem 2rem;
}
footer {
margin-left: 0;
}
}

View File

@ -1,46 +1,58 @@
/*
* -- RESET --
*/
* { * {
box-sizing: border-box; box-sizing: border-box;
} }
ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input, textarea { ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
body,
html,
p,
blockquote,
fieldset,
input,
textarea {
margin: 0; margin: 0;
padding: 0; padding: 0;
border: none; border: none;
} }
a img,
a img, :link img, :visited img { :link img,
:visited img {
border: none; border: none;
} }
:focus { :focus {
outline: none; outline: none;
} }
::-moz-focus-inner { ::-moz-focus-inner {
border: 0; border: 0;
} }
form { form {
all: unset; all: unset;
} }
html {
body, html { font-size: 100%;
}
body,
html {
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
font-size: 1rem; font-family: "open_sansregular", sans-serif;
font-family: "Open Sans", sans-serif; font-weight: 400;
color: #221E22; line-height: 1.75;
background-color: #F6F4F6; color: #221e22;
background-color: #f6f4f6;
} }
a { a {
text-decoration: none !important; text-decoration: none !important;
font-family: 'open_sansbold'; color: #A6263E;
font-weight: bold;
color: #3F3B3B;
} }
a:hover, a:hover,
a:focus { a:focus {
@ -50,12 +62,10 @@ a:focus {
a:active { a:active {
text-decoration-line: underline !important; text-decoration-line: underline !important;
} }
b { b {
font-family: 'open_sansbold'; font-family: 'open_sansbold';
font-weight: bold; font-weight: bold;
} }
h1, h1,
h2, h2,
h3, h3,
@ -63,77 +73,41 @@ h4,
h5, h5,
h6, h6,
label { label {
color: #3F3B3B; color: #3f3b3b;
} }
h1 {
font-size: 1.5rem;
font-family: 'open_sansbold', sans-serif;
font-weight: bold;
line-height: 1.20;
margin-top: 0px;
margin-bottom: 0.8rem;
word-spacing: 0.00px;
text-transform: none;
}
h2 {
font-size: 1.25rem;
font-family: 'open_sansbold', sans-serif;
font-weight: bold;
line-height: 1.20;
margin-top: 2rem;
margin-bottom: 0.6rem;
word-spacing: 0.00px;
text-transform: none;
}
h3 {
font-size: 1.15rem;
font-family: 'open_sansbold', sans-serif;
font-weight: bold;
line-height: 1.20;
margin-top: 1.8rem;
margin-bottom: 0.3rem;
letter-spacing: 0.00px;
word-spacing: 0.00px;
text-transform: none;
}
h4 {
font-size: 1rem;
font-family: 'open_sansbold', sans-serif;
font-weight: bold;
line-height: 1.20;
margin-top: 1.4rem;
margin-bottom: 0.2rem;
letter-spacing: 0.00px;
word-spacing: 0.00px;
text-transform: none;
}
p { p {
font-weight: 400;
line-height: 1.60;
margin-top: 0px;
margin-bottom: 1rem; margin-bottom: 1rem;
word-spacing: 0.50px;
text-transform: none;
} }
h1,
em { h2,
h3,
h4,
h5 {
margin: 3rem 0 1.38rem;
font-weight: 400; font-weight: 400;
line-height: 1.60; line-height: 1.3;
opacity: 0.85;
margin-top: 0px;
margin-bottom: 1.5rem;
letter-spacing: -0.30px;
word-spacing: -0.10px;
} }
h1 {
ul { margin-top: 0;
margin-left: 1rem; font-size: 1.802rem;
}
h2 {
font-size: 1.602rem;
}
h3 {
font-size: 1.424rem;
}
h4 {
font-size: 1.266rem;
}
h5 {
font-size: 1.125rem;
}
small,
.text_small {
font-size: 0.889rem;
} }
ul li { ul li {
margin-left: 1rem; margin-left: 2rem;
line-height: 1.75;
} }

View File

@ -1,93 +1,71 @@
/*
* -- RESET --
*/
* { * {
-webkit-box-sizing: border-box !important; -webkit-box-sizing: border-box !important;
-moz-box-sizing: border-box !important; -moz-box-sizing: border-box !important;
box-sizing: border-box !important; box-sizing: border-box !important;
scroll-margin: 5rem; scroll-margin: 5rem;
} }
a img,
a img, :link img, :visited img { :link img,
:visited img {
border: none; border: none;
} }
:focus { :focus {
outline: none; outline: none;
} }
::-moz-focus-inner { ::-moz-focus-inner {
border: 0; border: 0;
} }
form { form {
all: unset; all: unset;
} }
body,
/* html {
* -- BASE STYLES --
* Most of these are inherited from Base, but I want to change a few.
*/
body, html {
scroll-behavior: smooth; scroll-behavior: smooth;
-webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
height: 100vh; height: 100vh;
font-size: 1rem; font-size: 1rem;
font-family: 'open_sansregular'; font-family: "open_sansregular";
color: #221E22; color: #221e22;
background-color: #F6F4F6; background-color: #f6f4f6;
} }
body * { body * {
position: relative; position: relative;
} }
/*
* -- HEADER --
*/
header { header {
/* maximum z-index found */
z-index: 3; z-index: 3;
position: fixed; position: fixed;
font-size: 1.25rem; font-size: 1.25rem;
font-weight: bold; font-weight: bold;
background: #a22430; background: #a22430;
max-height: 4rem; max-height: 4rem;
width: 100%; width: 100%;
top: 0; top: 0;
left: 0; left: 0;
padding: 0.5rem 1rem 0.5rem 1rem; padding: 0.5rem 1rem 0.5rem 1rem;
-webkit-box-shadow: 2px 5px 16px 0px rgba(162, 36, 48, 0.4),
-webkit-box-shadow: 2px 5px 16px 0px rgba(162, 36, 48, 0.4), 17px 26px 15px 0px rgba(0,0,0,0); 17px 26px 15px 0px rgba(0, 0, 0, 0);
box-shadow: 2px 5px 16px 0px rgba(162, 36, 48, 0.4), 17px 26px 15px 0px rgba(0,0,0,0); box-shadow: 2px 5px 16px 0px rgba(162, 36, 48, 0.4),
17px 26px 15px 0px rgba(0, 0, 0, 0);
} }
header ul { header ul {
list-style: none; list-style: none;
} }
header * { header * {
font-size: inherit; font-size: inherit;
color: #f6f4f6;
color: #F6F4F6;
height: 100vh; height: 100vh;
max-height: 3rem; max-height: 3rem;
display: flex; display: flex;
align-items: center; align-items: center;
} }
.home-menu { .home-menu {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
.menu-heading { .menu-heading {
display: flex; display: flex;
color: #F6F4F6; color: #f6f4f6;
} }
.menu-heading b { .menu-heading b {
} }
@ -97,27 +75,25 @@ header * {
.menu-link { .menu-link {
line-height: 1.4em; line-height: 1.4em;
margin-left: 1rem; margin-left: 1rem;
color: #F6F4F6; color: #f6f4f6;
} }
.button { .button {
background-color: #221E22EE; background-color: #221e22ee;
border-radius: 0.5rem; border-radius: 0.5rem;
padding: 4px 8px; padding: 4px 8px;
color: #f6f4f6;
color: #F6F4F6;
align-self: flex-end; align-self: flex-end;
width: max-content; width: max-content;
} }
hr { hr {
margin-bottom: 1rem; margin-bottom: 1rem;
width: 100%; width: 100%;
color: #221E2266; color: #221e2266;
} }
#log-of-past-successes { #log-of-past-successes {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
@media screen and (min-width: 2000px) and (min-height: 1000px) { @media screen and (min-width: 2000px) and (min-height: 1000px) {
.content, .content,
.content-team { .content-team {
@ -134,7 +110,6 @@ hr {
.menu-list { .menu-list {
font-size: 1rem !important; font-size: 1rem !important;
} }
.content, .content,
.content ~ * { .content ~ * {
top: unset !important; top: unset !important;
@ -145,7 +120,6 @@ hr {
top: 3rem !important; top: 3rem !important;
height: calc(100vh - 4rem); height: calc(100vh - 4rem);
} }
.splash-head { .splash-head {
font-size: 2rem !important; font-size: 2rem !important;
} }
@ -153,76 +127,54 @@ hr {
height: 3rem !important; height: 3rem !important;
width: 3rem !important; width: 3rem !important;
} }
.content, .content,
.ribbon-wrapper, .ribbon-wrapper,
.content-team { .content-team {
padding: 1.5rem !important; padding: 1.5rem !important;
} }
.content-team .g .l-box-lrg:last-child { .content-team .g .l-box-lrg:last-child {
flex: 1 !important; flex: 1 !important;
word-break: keep-all; word-break: keep-all;
white-space: nowrap; white-space: nowrap;
} }
.l-box { .l-box {
margin-right: 1rem; margin-right: 1rem;
} }
footer { footer {
position: relative !important; position: relative !important;
} }
} }
/*
* -- BODY --
*/
.body-wrapper { .body-wrapper {
margin-top: 4rem; margin-top: 4rem;
} }
.body-wrapper a { .body-wrapper a {
font-family: 'open_sansbold'; font-family: "open_sansbold";
font-weight: bold; font-weight: bold;
} }
/*
* -- SPLASH --
*/
.splash { .splash {
text-align: center; text-align: center;
padding: 3rem; padding: 3rem;
background-color: #F6F4F6; background-color: #f6f4f6;
} }
.splash-head { .splash-head {
display: inline-flex; display: inline-flex;
flex-wrap: wrap; flex-wrap: wrap;
width: border-box; width: border-box;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
font-size: 6rem; font-size: 6rem;
color: #a22430; color: #a22430;
cursor: default; cursor: default;
margin-bottom: 1rem; margin-bottom: 1rem;
} }
.splash-head img { .splash-head img {
height: 6rem; height: 6rem;
width: 6rem; width: 6rem;
margin-right: 5px; margin-right: 5px;
} }
/*
* -- CONTENT --
*/
.content-head { .content-head {
font-family: 'open_sansbold', sans-serif; font-family: "open_sansbold", sans-serif;
} }
.content { .content {
z-index: 2; z-index: 2;
position: sticky; position: sticky;
@ -241,15 +193,13 @@ hr {
flex: 1; flex: 1;
min-width: 10rem; min-width: 10rem;
} }
.content ~ * { .content ~ * {
z-index: 3; z-index: 3;
position: sticky; position: sticky;
top: 4rem; top: 4rem;
} }
.ribbon-wrapper { .ribbon-wrapper {
background-color: #F6F4F6; background-color: #f6f4f6;
padding: 4rem; padding: 4rem;
} }
.ribbon { .ribbon {
@ -268,11 +218,10 @@ hr {
} }
.ribbon-content a { .ribbon-content a {
background-color: #a22430; background-color: #a22430;
color: #F6F4F6; color: #f6f4f6;
padding: 4px 12px; padding: 4px 12px;
border-radius: 0.5rem; border-radius: 0.5rem;
} }
.content-team { .content-team {
z-index: 3; z-index: 3;
position: sticky; position: sticky;
@ -285,7 +234,6 @@ hr {
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-between; justify-content: space-between;
} }
.content-team .g .l-box-lrg { .content-team .g .l-box-lrg {
text-align: justify-all; text-align: justify-all;
padding-inline-end: 2rem; padding-inline-end: 2rem;
@ -300,7 +248,6 @@ hr {
.content-team .g .l-box-lrg:last-child { .content-team .g .l-box-lrg:last-child {
flex: 0.5; flex: 0.5;
} }
#nodes { #nodes {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -311,36 +258,36 @@ hr {
max-width: max-content; max-width: max-content;
width: 100%; width: 100%;
} }
#nodes td,
#nodes td, #nodes th { #nodes th {
width: 100%; width: 100%;
border: 1px solid #ddd; border: 1px solid #ddd;
padding: 6px 12px; padding: 6px 12px;
} }
#nodes tr:nth-child(even) {
#nodes tr:nth-child(even){background-color: #F6F4F6;} background-color: #f6f4f6;
#nodes tr:nth-child(odd){background-color: #EEEEEE;} }
#nodes tr:nth-child(odd) {
background-color: #eeeeee;
#nodes tr:hover {background-color: #e9eaed;} }
#nodes tr:hover {
background-color: #e9eaed;
}
#nodes th { #nodes th {
padding-top: 12px; padding-top: 12px;
padding-bottom: 12px; padding-bottom: 12px;
text-align: left; text-align: left;
background-color: #A22430; background-color: #a22430;
color: #F6F4F6; color: #f6f4f6;
} }
.footer { .footer {
width: 100%; width: 100%;
padding: 1rem; padding: 1rem;
background-color: #333333; background-color: #333333;
color: #e9eaed; color: #e9eaed;
} }
.footer a { .footer a {
font-family: 'open_sansbold'; font-family: "open_sansbold";
font-weight: bold; font-weight: bold;
color: #e9eaed; color: #e9eaed;
} }

View File

@ -12,14 +12,10 @@
</head> </head>
<body> <body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <a class="header-main" href="https://gnusocial.rocks/">
<a class="menu-heading" href="https://gnusocial.rocks/"> <img src="https://www.gnusocial.rocks/assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social
<img src="https://www.gnusocial.rocks/assets/img/gnu-social-logo-invert.svg" alt="GNU social">
<b>gnu
</b>social
</a> </a>
</div> <aside class="header-sidebar">
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"> <li class="menu-item menu-selected">
<a href="#" class="menu-link">Documentation <a href="#" class="menu-link">Documentation
@ -42,10 +38,11 @@
</a> </a>
</li> </li>
</ul> </ul>
</div> </aside>
</header> </header>
<div class="content-wrapper"> <div class="content-wrapper">
<div class="content"> <main class="content">
<h2 class="content-head is-center">Documentation <h2 class="content-head is-center">Documentation
</h2> </h2>
<p>GNU social is distributed with four documentations. <p>GNU social is distributed with four documentations.
@ -66,7 +63,7 @@
<a href="/designer">Designer <a href="/designer">Designer
</a> one is an in-depth overview of the design motifs, and the design language used. Useful for creating new plugins and help as a basis for new themes. </a> one is an in-depth overview of the design motifs, and the design language used. Useful for creating new plugins and help as a basis for new themes.
</p> </p>
</div> </main>
</div> </div>
<footer class="footer l-box is-center"> <footer class="footer l-box is-center">
This site's source is This site's source is

View File

@ -13,14 +13,10 @@
<body> <body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <a class="header-main" href="https://gnusocial.rocks/">
<a class="menu-heading" href="https://gnusocial.rocks/"> <img src="https://www.gnusocial.rocks/assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social
<img src="https://www.gnusocial.rocks/assets/img/gnu-social-logo-invert.svg" alt="GNU social">
<b>gnu
</b>social
</a> </a>
</div> <aside class="header-sidebar">
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item"><a href="/soc" class="menu-link">Programme</a></li> <li class="menu-item"><a href="/soc" class="menu-link">Programme</a></li>
<li class="menu-item menu-selected"><a href="/soc/2021" class="menu-link">2021</a></li> <li class="menu-item menu-selected"><a href="/soc/2021" class="menu-link">2021</a></li>
@ -30,11 +26,11 @@
<li class="menu-item"><a href="../study_resources.html" class="menu-link">Study Resources</a></li> <li class="menu-item"><a href="../study_resources.html" class="menu-link">Study Resources</a></li>
<li class="menu-item"><a href="academics.html" class="menu-link">Academics</a></li> <li class="menu-item"><a href="academics.html" class="menu-link">Academics</a></li>
</ul> </ul>
</div> </aside>
</header> </header>
<div class="content-wrapper">
<div class="content soc">
<div class="content-wrapper">
<main class="content soc">
<h2 class="content-head is-center">Summer of Code 2021</h2> <h2 class="content-head is-center">Summer of Code 2021</h2>
<article id="about"> <article id="about">
@ -51,11 +47,11 @@
<h2>Ideas</h2> <h2>Ideas</h2>
<p>The community has not proposed ideas for 2021 yet. As the current development team is planning on major active development of v3 with NLnet sponsorship this year, as a student you can either try to join the development of v3 or contribute with plugins for v2, which is the latest release.</p> <p>The community has not proposed ideas for 2021 yet. As the current development team is planning on major active development of v3 with NLnet sponsorship this year, as a student you can either try to join the development of v3 or contribute with plugins for v2, which is the latest release.</p>
</article> </article>
</main>
</div> </div>
<footer class="l-box is-center"> <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> </footer>
</div>
</body> </body>
</html> </html>

View File

@ -13,14 +13,10 @@
<body> <body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <a class="header-main" href="https://gnusocial.rocks/">
<a class="menu-heading" href="https://gnusocial.rocks/"> <img src="https://www.gnusocial.rocks/assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social
<img src="https://www.gnusocial.rocks/assets/img/gnu-social-logo-invert.svg" alt="GNU social">
<b>gnu
</b>social
</a> </a>
</div> <aside class="header-sidebar">
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item"><a href="/soc" class="menu-link">Programme</a></li> <li class="menu-item"><a href="/soc" class="menu-link">Programme</a></li>
<li class="menu-item menu-selected"><a href="/soc/2022" class="menu-link">2022</a></li> <li class="menu-item menu-selected"><a href="/soc/2022" class="menu-link">2022</a></li>
@ -30,23 +26,24 @@
<li class="menu-item"><a href="../study_resources.html" class="menu-link">Study Resources</a></li> <li class="menu-item"><a href="../study_resources.html" class="menu-link">Study Resources</a></li>
<li class="menu-item"><a href="academics.html" class="menu-link">Academics</a></li> <li class="menu-item"><a href="academics.html" class="menu-link">Academics</a></li>
</ul> </ul>
</div> </aside>
</header> </header>
<div class="content-wrapper"> <div class="content-wrapper">
<div class="content soc"> <main class="content soc">
<h2 class="content-head is-center">Summer of Code 2022</h2> <h2 class="content-head is-center">Summer of Code 2022</h2>
<article id="about"> <article id="about">
<h2>About the programme</h2> <h2>About the programme</h2>
<p>Check the <a href="/soc/">programme page</a> to learn more about the programme and on how to apply.</p> <p>Check the <a href="/soc/">programme page</a> to learn more about the programme and on how to apply.</p>
<p>GNU social is a social communication software used in <a href="https://blog.diogo.site/posts/what-is-the-fediverse">federated social networks</a>. It is widely supported and has a large userbase.</p> <p>GNU social is a social communication software used in <a href="https://blog.diogo.site/posts/what-is-the-fediverse">federated social networks</a>. It is widely supported and has a large userbase.</p>
<p>If you would like to know how is it like to be a GSoC student at GNU social, <a href="https://blog.diogo.site/posts/gsoc-2018">read this blog post</a>!</p> <p>If you would like to know how is it like to be a GSoC student at GNU social, <a href="https://blog.diogo.site/posts/gsoc-2018">read this blog post</a>!</p>
</article> </article>
<article id="stipend"> <article id="stipend">
<h2>Summer Stipend</h2> <h2>Summer Stipend</h2>
<p>We have applied as an organisation to Google Summer of Code 2022, we are still waiting for the result. In 2020 we've had a successful student supported by <a href="https://thefreaks.club/">The Freaks Club</a>, you can reach thndrbvr and try your luck, or look for another sponsor.</p> <p>We have applied as an organisation to Google Summer of Code 2022, we are still waiting for the result. In 2020 we've had a successful student supported by <a href="https://thefreaks.club/">The Freaks Club</a>, you can reach thndrbvr and try your luck, or look for another sponsor.</p>
</article> </article>
<article id="ideas"> <article id="ideas">
<h2>Ideas</h2> <h2>Ideas</h2>
<p>Below is a list of ideas you can work on this Summer at GNU social. You should pick one (or mix a couple) of them and <a href="https://agile.gnusocial.rocks/doku.php?id=affairs:development_discussion">talk on IRC about it</a>. The community will help you understanding what has to be done so you can put a good proposal together.</p> <p>Below is a list of ideas you can work on this Summer at GNU social. You should pick one (or mix a couple) of them and <a href="https://agile.gnusocial.rocks/doku.php?id=affairs:development_discussion">talk on IRC about it</a>. The community will help you understanding what has to be done so you can put a good proposal together.</p>
@ -110,11 +107,10 @@
<p><strong>Difficulty:</strong> Medium</p> <p><strong>Difficulty:</strong> Medium</p>
<p><strong>Workload:</strong> 350h</p> <p><strong>Workload:</strong> 350h</p>
</article> </article>
</main>
</div> </div>
<footer class="l-box is-center"> <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> </footer>
</div>
</body> </body>
</html> </html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>All tags - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>All tags - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -38,7 +35,7 @@
<div id="all_posts"><a href="index.html">Blog</a> &mdash; <a href="feed.rss">Subscribe</a></div> <div id="all_posts"><a href="index.html">Blog</a> &mdash; <a href="feed.rss">Subscribe</a></div>
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -2,8 +2,8 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"> <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 V3</title><link>https://gnusocial.rocks/v3/index.html</link> <channel><title>GNU social V3</title><link>https://gnusocial.rocks/v3/index.html</link>
<description>Development blog where we announce our progress.</description><language>en</language> <description>Development blog where we announce our progress.</description><language>en</language>
<lastBuildDate>Tue, 18 Jan 2022 15:53:39 +0000</lastBuildDate> <lastBuildDate>Fri, 25 Feb 2022 21:12:35 +0000</lastBuildDate>
<pubDate>Tue, 18 Jan 2022 15:53:39 +0000</pubDate> <pubDate>Fri, 25 Feb 2022 21:12:35 +0000</pubDate>
<atom:link href="https://gnusocial.rocks/v3/feed.rss" rel="self" type="application/rss+xml" /> <atom:link href="https://gnusocial.rocks/v3/feed.rss" rel="self" type="application/rss+xml" />
<item><title> <item><title>
Milestone: Web Monetization Milestone: Web Monetization
@ -29,6 +29,17 @@ Monetization in the fediverse.</p>
<p><img src="assets/web_monetization/donate.png" alt="" title="" /></p> <p><img src="assets/web_monetization/donate.png" alt="" title="" /></p>
<!-- text end --> <!-- text end -->
]]></description><link>https://gnusocial.rocks/v3/milestone-web-monetization.html</link> ]]></description><link>https://gnusocial.rocks/v3/milestone-web-monetization.html</link>
<guid>https://gnusocial.rocks/v3/./milestone-web-monetization.html</guid> <guid>https://gnusocial.rocks/v3/./milestone-web-monetization.html</guid>
@ -69,6 +80,17 @@ always room for improvement :)</p>
<!-- text end --> <!-- text end -->
]]></description><link>https://gnusocial.rocks/v3/milestone-automatic-accesibility-a11y-testing.html</link> ]]></description><link>https://gnusocial.rocks/v3/milestone-automatic-accesibility-a11y-testing.html</link>
<guid>https://gnusocial.rocks/v3/./milestone-automatic-accesibility-a11y-testing.html</guid> <guid>https://gnusocial.rocks/v3/./milestone-automatic-accesibility-a11y-testing.html</guid>
@ -134,6 +156,17 @@ and enables circle mentions with <code>@#circle_name</code>.</p>
<!-- text end --> <!-- text end -->
]]></description><link>https://gnusocial.rocks/v3/milestone-collections.html</link> ]]></description><link>https://gnusocial.rocks/v3/milestone-collections.html</link>
<guid>https://gnusocial.rocks/v3/./milestone-collections.html</guid> <guid>https://gnusocial.rocks/v3/./milestone-collections.html</guid>
@ -156,6 +189,17 @@ translate following the same rules as AndStatus <a href="https://github.com/ands
<!-- text end --> <!-- text end -->
]]></description><link>https://gnusocial.rocks/v3/updates-local-groups.html</link> ]]></description><link>https://gnusocial.rocks/v3/updates-local-groups.html</link>
<guid>https://gnusocial.rocks/v3/./updates-local-groups.html</guid> <guid>https://gnusocial.rocks/v3/./updates-local-groups.html</guid>
@ -177,6 +221,17 @@ You can now pin notes in your profile! Given you have suficient permissions to d
<!-- text end --> <!-- text end -->
]]></description><link>https://gnusocial.rocks/v3/milestone-pinned-notes.html</link> ]]></description><link>https://gnusocial.rocks/v3/milestone-pinned-notes.html</link>
<guid>https://gnusocial.rocks/v3/./milestone-pinned-notes.html</guid> <guid>https://gnusocial.rocks/v3/./milestone-pinned-notes.html</guid>
@ -202,6 +257,17 @@ Milestone: Notes with LaTeX
<!-- text end --> <!-- text end -->
]]></description><link>https://gnusocial.rocks/v3/milestone-notes-with-latex.html</link> ]]></description><link>https://gnusocial.rocks/v3/milestone-notes-with-latex.html</link>
<guid>https://gnusocial.rocks/v3/./milestone-notes-with-latex.html</guid> <guid>https://gnusocial.rocks/v3/./milestone-notes-with-latex.html</guid>
@ -228,6 +294,17 @@ Milestone: Notes with Markdown
<!-- text end --> <!-- text end -->
]]></description><link>https://gnusocial.rocks/v3/milestone-notes-with-markdown.html</link> ]]></description><link>https://gnusocial.rocks/v3/milestone-notes-with-markdown.html</link>
<guid>https://gnusocial.rocks/v3/./milestone-notes-with-markdown.html</guid> <guid>https://gnusocial.rocks/v3/./milestone-notes-with-markdown.html</guid>
@ -249,6 +326,17 @@ to stop receiving notifications derived from that, it is now possible:
@ -291,6 +379,17 @@ specialisation of a collection.</p>
@ -324,6 +423,17 @@ plugin? How is it better than v2's?</p>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Blog - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Blog - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -110,7 +107,7 @@ Our objective is to further differentiate GNU social from the alternative softwa
</ul> </ul>
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: ActivityPub - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: ActivityPub - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -61,6 +58,17 @@ plugin? How is it better than v2's?</p>
@ -73,7 +81,7 @@ plugin? How is it better than v2's?</p>
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: ActivityStreams 2.0 and WebFinger - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: ActivityStreams 2.0 and WebFinger - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -84,6 +81,17 @@ GNU social development team
@ -100,7 +108,7 @@ GNU social development team
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Actor colour theme plugin - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Actor colour theme plugin - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -110,6 +107,17 @@ Given a valid colour, it's the actor's responsibility whether or not the colours
@ -124,7 +132,7 @@ Given a valid colour, it's the actor's responsibility whether or not the colours
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Albums - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Albums - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -71,6 +68,17 @@ specialisation of a collection.</p>
@ -80,7 +88,7 @@ specialisation of a collection.</p>
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Automatic Accesibility (A11Y) testing - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Automatic Accesibility (A11Y) testing - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -73,11 +70,22 @@ always room for improvement :)</p>
<!-- text end --> <!-- text end -->
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Collections - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Collections - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -98,11 +95,22 @@ and enables circle mentions with <code>@#circle_name</code>.</p>
<!-- text end --> <!-- text end -->
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Documentation and Tests Infrastructure - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Documentation and Tests Infrastructure - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -110,6 +107,17 @@ is properly tested, we have the
@ -126,7 +134,7 @@ is properly tested, we have the
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Mute notifications from a conversation - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Mute notifications from a conversation - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -54,6 +51,17 @@ to stop receiving notifications derived from that, it is now possible:
@ -62,7 +70,7 @@ to stop receiving notifications derived from that, it is now possible:
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Notes and Actors with languages - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Notes and Actors with languages - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -91,6 +88,17 @@ for actual internationalization of the free network.</p>
@ -104,7 +112,7 @@ for actual internationalization of the free network.</p>
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Notes with LaTeX - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Notes with LaTeX - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -58,11 +55,22 @@ GNU social development team
<!-- text end --> <!-- text end -->
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Notes with Markdown - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Notes with Markdown - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -59,11 +56,22 @@ GNU social development team
<!-- text end --> <!-- text end -->
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Pinned Notes - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Pinned Notes - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -54,11 +51,22 @@ You can now pin notes in your profile! Given you have suficient permissions to d
<!-- text end --> <!-- text end -->
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Port Media handling from v2 - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Port Media handling from v2 - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -114,6 +111,17 @@ The key ones are:</p>
@ -130,7 +138,7 @@ The key ones are:</p>
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Tags - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Tags - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -138,6 +135,17 @@ tag.</p>
@ -152,7 +160,7 @@ tag.</p>
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Milestone: Web Monetization - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Milestone: Web Monetization - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -62,11 +59,22 @@ Monetization in the fediverse.</p>
<p><img src="assets/web_monetization/donate.png" alt="" title="" /></p> <p><img src="assets/web_monetization/donate.png" alt="" title="" /></p>
<!-- text end --> <!-- text end -->
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -1,11 +1,7 @@
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>

View File

@ -1,4 +1,3 @@
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
</footer> </footer>

View File

@ -4,7 +4,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Updates: Finish the Avatar component - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Updates: Finish the Avatar component - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -146,6 +143,17 @@ GNU social development team
@ -162,7 +170,7 @@ GNU social development team
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Updates: Implement StoreRemoteMedia for v3 and port Embed - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Updates: Implement StoreRemoteMedia for v3 and port Embed - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -82,6 +79,17 @@ attempts to generate a page preview from open graph and oembed. I.e., acts when
@ -98,7 +106,7 @@ attempts to generate a page preview from open graph and oembed. I.e., acts when
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Updates: Improve the Attachments system - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Updates: Improve the Attachments system - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -115,6 +112,17 @@ any remote URL being shared in a note.</li>
@ -131,7 +139,7 @@ any remote URL being shared in a note.</li>
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Updates: Interface and accessibility - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Updates: Interface and accessibility - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -147,6 +144,17 @@ markup, we hope to achieve an accessible, fast and polished structure by which a
@ -163,7 +171,7 @@ markup, we hope to achieve an accessible, fast and polished structure by which a
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Updates: Interface Structure and Flexibility improved - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Updates: Interface Structure and Flexibility improved - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -60,6 +57,17 @@ GNU social development team
@ -74,7 +82,7 @@ GNU social development team
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Updates: Local Groups - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Updates: Local Groups - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -55,11 +52,22 @@ translate following the same rules as AndStatus <a href="https://github.com/ands
<!-- text end --> <!-- text end -->
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>

View File

@ -4,19 +4,16 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86"> <meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86">
<link rel="shortcut icon" href="/favicon.ico"> <link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/reset.css"> <link rel="stylesheet" href="../assets/css/reset.css">
<link rel="stylesheet" href="https://www.gnusocial.rocks//assets/css/blog.css"> <link rel="stylesheet" href="../assets/css/blog.css">
<link rel='stylesheet' type='text/css' href="https://www.gnusocial.rocks//assets/fonts/opensans/opensans.css"><title>Updates: V3 blog - GNU social V3</title> <link rel="stylesheet" href="../assets/fonts/opensans/opensans.css">
<title>Updates: V3 blog - GNU social V3</title>
</head><body> </head><body>
<header> <header>
<div class="home-menu menu menu-horizontal menu-fixed"> <div class="home-menu menu menu-horizontal menu-fixed">
<a class="menu-heading" href="https://gnusocial.rocks/"> <div class="home-menu menu menu-horizontal menu-fixed">
<img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"> <a class="header-main" href="/"><img src="../assets/img/gnu-social-logo-invert.svg" alt="GNU social"><b>gnu</b>social</a>
<b>gnu</b>social
</a>
</div>
<div class="sidebar">
<ul class="menu-list"> <ul class="menu-list">
<li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li> <li class="menu-item menu-selected"><a href="index.html" class="menu-link">Blog Index</a></li>
<li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li> <li class="menu-item"><a href="https://code.gnusocial.rocks/" class="menu-link">Repository</a></li>
@ -90,6 +87,17 @@ forget to subscribe!</p>
@ -106,7 +114,7 @@ forget to subscribe!</p>
<!-- entry end --> <!-- entry end -->
</div> </div>
</div></div> </div></div>
<footer class="footer l-box is-center"> <footer>
This site's source is This site's source is <a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>.
<a href="https://code.undefinedhackers.net/GNUsocial/gnusocial.rocks">hosted here</a>. </footer>
</footer></body></html> </body></html>