Import all nix files in a directory tree. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ dendrix.oeiuwq.com/Dendritic.html
dendritic inputs
at main 51 lines 1.2 kB view raw
1--- 2import { Icon } from '@astrojs/starlight/components'; 3--- 4 5<section class="sl-flex"> 6 <a href="/contributing" class="sl-flex"> 7 <Icon name="rocket" size="1.2em" /> 8 Contribute 9 </a> 10 11 <a href="https://den.oeiuwq.com/community" class="sl-flex"> 12 <svg 13 xmlns="http://www.w3.org/2000/svg" 14 width="16" 15 height="16" 16 viewBox="0 0 24 24" 17 fill="currentColor" 18 style="width:1.2em;height:1.2em;" 19 > 20 <path 21 d="M12.3 12.22A4.92 4.92 0 0 0 14 8.5a5 5 0 0 0-10 0a4.92 4.92 0 0 0 1.7 3.72A8 8 0 0 0 1 19.5a1 1 0 0 0 2 0a6 6 0 0 1 12 0a1 1 0 0 0 2 0a8 8 0 0 0-4.7-7.28M9 11.5a3 3 0 1 1 3-3a3 3 0 0 1-3 3m9.74.32A5 5 0 0 0 15 3.5a1 1 0 0 0 0 2a3 3 0 0 1 3 3a3 3 0 0 1-1.5 2.59a1 1 0 0 0-.5.84a1 1 0 0 0 .45.86l.39.26l.13.07a7 7 0 0 1 4 6.38a1 1 0 0 0 2 0a9 9 0 0 0-4.23-7.68" 22 ></path> 23 </svg> 24 Community 25 </a> 26 27 <a href="https://dendritic.oeiuwq.com/sponsor" class="sl-flex"> 28 <Icon name="heart" size="1.2em" /> 29 Sponsor 30 </a> 31</section> 32 33<style> 34 section { 35 justify-content: center; 36 flex-wrap: wrap; 37 gap: 0.5rem 1.5rem; 38 font-size: var(--sl-text-sm); 39 } 40 41 a { 42 align-items: center; 43 text-decoration: none; 44 gap: 0.5rem; 45 color: var(--sl-color-gray-3); 46 } 47 48 a:hover { 49 color: var(--sl-color-white); 50 } 51</style>