Mirror of https://github.com/roostorg/playground github.com/roostorg/playground
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

style: add favicon, improve navbar

+21
+2
_layouts/default.html
··· 13 13 <meta property="og:site_name" content="{{ site.title }}" /> 14 14 <meta itemprop="name" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}" /> 15 15 16 + <link rel="icon" href="images/icon.svg" type="image/svg+xml"> 17 + 16 18 <meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}" /> 17 19 <meta property="og:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}" /> 18 20 <meta itemprop="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}" />
+11
images/icon.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1200" width="1200" height="1200"> 2 + <path d="M 949.7,415.2 V 153.9 C 949.7,68.9 880.8,0 795.7,0 H 522 L 711.5,189.5 416,482.2 V 189.4 H 0 l 416,416 v 0 c 0,0 158.7,158.7 158.7,158.7 h -210 v 266.8 L 656.8,1200 949.7,1030.9 v -266.8 0 0 c 0,0 -194.9,-195 -194.9,-195 h 41 c 85,0 153.9,-68.9 153.9,-153.9 z M 364.7,237.7 V 481.6 L 120.8,237.7 Z M 416,812.4 h 215.3 v 313.5 L 416,1001.3 Z m 482.4,188.9 -215.3,124.3 V 812.4 H 898.4 Z M 877.2,764.1 H 647.3 l -195,-195 H 682.2 Z M 449.2,520.9 784.1,189.4 642.9,48.2 H 790.5 C 850,48.2 898.3,96.4 898.3,156 V 413.2 C 898.3,472.7 850.1,521 790.5,521 H 449.1 Z" /> 3 + 4 + <style> 5 + path { fill: hsl(80, 22%, 13%) } 6 + 7 + @media (prefers-color-scheme: dark) { 8 + path { fill: rgb(238, 238, 0) } 9 + } 10 + </style> 11 + </svg>
+8
style.css
··· 64 64 65 65 header nav a { 66 66 color: inherit; 67 + font-family: var(--font-display); 68 + font-weight: bold; 69 + text-decoration: none; 70 + } 71 + 72 + header nav a:hover, 73 + header nav a:focus { 74 + text-decoration: underline; 67 75 } 68 76 69 77 main {