Rewild Your Web
web browser dweb
16
fork

Configure Feed

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

1<!DOCTYPE html> 2<html> 3 <!-- SPDX-License-Identifier: AGPL-3.0-or-later --> 4 <head> 5 <meta charset="UTF-8" /> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 <link rel="stylesheet" href="//theme.localhost:8888/index.css" /> 8 <link rel="stylesheet" href="//shared.localhost:8888/fonts/fonts.css" /> 9 <link 10 rel="stylesheet" 11 href="//shared.localhost:8888/third_party/lucide/lucide.css" 12 /> 13 <link rel="stylesheet" href="index.css" /> 14 <script type="module" src="//shared.localhost:8888/lucide_icon.js"></script> 15 <script type="module" src="//shared.localhost:8888/theme.js"></script> 16 <script type="module" src="index.js"></script> 17 </head> 18 <body> 19 <div class="weather-widget"> 20 <div class="weather-icon" id="weather-icon"> 21 <lucide-icon name="cloud"></lucide-icon> 22 </div> 23 <div class="weather-info"> 24 <div class="temperature" id="temperature">--°</div> 25 <div class="condition" id="condition">Loading...</div> 26 <div class="location" id="location"></div> 27 </div> 28 </div> 29 </body> 30</html>