[READ-ONLY] Mirror of https://github.com/thang-qt/ThreadLine. Alternative frontend for HackerNews and Lobsters threadline.thangqt.com/
0

Configure Feed

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

Add footer backlink

Quang Thang (Jul 11, 2026, 8:21 PM +0700) 94294673 2523c33d

+31 -1
+4
src/layout/AppShell.tsx
··· 20 20 <nav aria-label="Main navigation"><Link to="/">Latest</Link><Link to="/settings">Options</Link></nav> 21 21 </header> 22 22 {children} 23 + <footer className="site-footer"> 24 + <span>Threadline</span> 25 + <a href="https://thangqt.com" target="_blank" rel="noreferrer noopener">A project by ThangQT</a> 26 + </footer> 23 27 </div>; 24 28 }
+2 -1
src/styles/01-base.css
··· 86 86 } 87 87 88 88 .masthead, 89 - main { 89 + main, 90 + .site-footer { 90 91 max-width: 1280px; 91 92 margin: 0 auto; 92 93 }
+25
src/styles/02-layout.css
··· 75 75 transform: scaleX(1); 76 76 transform-origin: left; 77 77 } 78 + 79 + .site-footer { 80 + display: flex; 81 + justify-content: space-between; 82 + gap: 1rem; 83 + margin-top: 3rem; 84 + padding: 1.25rem 0 0; 85 + border-top: 1px solid var(--color-border); 86 + color: var(--color-muted); 87 + font-size: 0.8rem; 88 + } 89 + 90 + .site-footer span { 91 + font-family: var(--font-serif); 92 + font-weight: 700; 93 + color: var(--color-text-strong); 94 + } 95 + 96 + .site-footer a { 97 + font-weight: 700; 98 + } 99 + 100 + .site-footer a:hover { 101 + color: var(--color-accent); 102 + }