aboutsummaryrefslogtreecommitdiff
path: root/index.html
blob: 70ae21e0f7348d81f77d1f7e9f2bbb06aca761bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="styles.css">
    <title>New Tab</title>
</head>

<body>
    <h1></h1>
    <span class="search"><input id="searchInput" placeholder="Search..."><button id="searchBtn">Go</button></span>
    <div class="items">
        <a class="item" href="https://budget.marks.kitchen">
            <span class="icon">💰</span>BUDGET
        </a>
        <a class="item" id="calendar">
            <span class="icon">📅</span>CALENDAR
        </a>
        <a class="item" id="filefeed">
            <span class="icon">🗃ī¸</span>FILE FEED
        </a>
        <a class="item" id="files">
            <span class="icon">📁</span>FILES
        </a>
        <a class="item" href="https://fosstodon.org">
            <span class="icon">#ī¸âƒŖ</span>FOSSTODON
        </a>
        <a class="item" id="gitea">
            <span class="icon">💾</span>GITEA
        </a>
        <a class="item" id="rss">
            <span class="icon">📰</span>RSS
        </a>
        <a class="item" id="rssvideo">
            <span class="icon">đŸ“ē</span>RSS VIDEO
        </a>
        <a class="item" href="https://news.ycombinator.com/">
            <span class="icon">🐱‍đŸ’ģ</span>HN
        </a>
        <a class="item" id="wiki">
            <span class="icon">📖</span>WIKI
        </a>
        <a class="item" id="wunderground">
            <span class="icon">🌩ī¸</span>WUNDERGROUND
        </a>
        <a class="item" href="https://www.youtube.com/feed/subscriptions">
            <span class="icon">đŸ“Ŋī¸</span>YOUTUBE
        </a>
    </div>
    <table class="weather">
        <tr>
            <td rowspan="2">
                <image id="weatherIcon"></image>
            </td>
            <td>Temp</td>
            <td>Humid</td>
            <td>Feels</td>
            <td>UVI</td>
        </tr>
        <tr>
            <td id="weatherTemp"></td>
            <td id="weatherHumid"></td>
            <td id="weatherFeels"></td>
            <td id="weatherUVI"></td>
        </tr>
    </table>
    <table class="forecast">
        <tr>
            <th id="day1">Tomorrow</th>
            <th id="day2">The Next Day</th>
            <th id="day3">The Day After That</th>
        </tr>
        <tr>
            <image id="day1icon"></image>
            <image id="day2icon"></image>
            <image id="day3icon"></image>
        </tr>
        <tr>
            <td id="day1high"></td>
            <td id="day2high"></td>
            <td id="day3high"></td>
        </tr>
        <tr>
            <td id="day1low"></td>
            <td id="day2low"></td>
            <td id="day3low"></td>
        </tr>
        <tr>
            <td id="day1pop"></td>
            <td id="day2pop"></td>
            <td id="day3pop"></td>
        </tr>
        <tr>
            <td id="day1desc"></td>
            <td id="day2desc"></td>
            <td id="day3desc"></td>
        </tr>
    </table>
    <script src="config.js"></script>
    <script src="link-manager.js"></script>
    <script src="weather-manager.js"></script>
    <script src="search-manager.js"></script>
</body>

</html>