madansa7 commited on
Commit
7060b26
·
verified ·
1 Parent(s): 49e87bd

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +352 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Aussie Language
3
- emoji: 🐨
4
  colorFrom: purple
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: aussie-language
3
+ emoji: 🐳
4
  colorFrom: purple
5
+ colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,352 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Aussie Language Guide</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .tab-content {
11
+ display: none;
12
+ }
13
+ .tab-content.active {
14
+ display: block;
15
+ animation: fadeIn 0.5s ease-in-out;
16
+ }
17
+ @keyframes fadeIn {
18
+ from { opacity: 0; }
19
+ to { opacity: 1; }
20
+ }
21
+ .tab-btn.active {
22
+ background-color: #3b82f6;
23
+ color: white;
24
+ }
25
+ .term-card {
26
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
27
+ }
28
+ .term-card:hover {
29
+ transform: translateY(-5px);
30
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
31
+ }
32
+ </style>
33
+ </head>
34
+ <body class="bg-gray-100 min-h-screen font-sans">
35
+ <div class="container mx-auto px-4 py-8">
36
+ <!-- Header -->
37
+ <header class="text-center mb-8">
38
+ <h1 class="text-4xl font-bold text-blue-800 mb-2">Aussie Language Guide</h1>
39
+ <p class="text-lg text-gray-600">From slang to business lingo - understand the true blue Aussie way</p>
40
+ <div class="flex justify-center mt-4">
41
+ <div class="w-24 h-1 bg-yellow-400 rounded-full"></div>
42
+ </div>
43
+ </header>
44
+
45
+ <!-- Tabs Navigation -->
46
+ <div class="flex flex-wrap justify-center mb-8 bg-white rounded-lg shadow-md overflow-hidden">
47
+ <button class="tab-btn active px-6 py-3 font-medium text-sm md:text-base flex items-center" data-tab="slang">
48
+ <i class="fas fa-kiwi-bird mr-2"></i> Aussie Slang
49
+ </button>
50
+ <button class="tab-btn px-6 py-3 font-medium text-sm md:text-base flex items-center" data-tab="business">
51
+ <i class="fas fa-briefcase mr-2"></i> Business Phrases
52
+ </button>
53
+ <button class="tab-btn px-6 py-3 font-medium text-sm md:text-base flex items-center" data-tab="phrasal">
54
+ <i class="fas fa-comments mr-2"></i> Phrasal Verbs
55
+ </button>
56
+ </div>
57
+
58
+ <!-- Search Box -->
59
+ <div class="mb-8 max-w-2xl mx-auto">
60
+ <div class="relative">
61
+ <input type="text" id="search" placeholder="Search terms..." class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
62
+ <button class="absolute right-3 top-3 text-gray-400 hover:text-blue-500">
63
+ <i class="fas fa-search"></i>
64
+ </button>
65
+ </div>
66
+ </div>
67
+
68
+ <!-- Tab Contents -->
69
+ <div class="bg-white rounded-lg shadow-lg overflow-hidden">
70
+ <!-- Aussie Slang Tab -->
71
+ <div id="slang" class="tab-content active p-6">
72
+ <h2 class="text-2xl font-bold text-blue-800 mb-6 flex items-center">
73
+ <i class="fas fa-kiwi-bird mr-3 text-yellow-500"></i> Australian Slang Dictionary
74
+ </h2>
75
+
76
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
77
+ <!-- Slang terms will be inserted here by JavaScript -->
78
+ </div>
79
+ </div>
80
+
81
+ <!-- Business Phrases Tab -->
82
+ <div id="business" class="tab-content p-6">
83
+ <h2 class="text-2xl font-bold text-blue-800 mb-6 flex items-center">
84
+ <i class="fas fa-briefcase mr-3 text-green-500"></i> Business Phrases (Australian)
85
+ </h2>
86
+
87
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
88
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
89
+ <h3 class="font-bold text-lg text-green-700 mb-2">"Let's touch base"</h3>
90
+ <p class="text-gray-600 mb-3">Meaning to meet or contact someone to discuss something.</p>
91
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "We should touch base next week about the project timeline."</p>
92
+ </div>
93
+
94
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
95
+ <h3 class="font-bold text-lg text-green-700 mb-2">"Run it up the flagpole"</h3>
96
+ <p class="text-gray-600 mb-3">To test an idea or proposal with others to get their opinion.</p>
97
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "Let's run this marketing strategy up the flagpole with the team."</p>
98
+ </div>
99
+
100
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
101
+ <h3 class="font-bold text-lg text-green-700 mb-2">"On the same page"</h3>
102
+ <p class="text-gray-600 mb-3">Agreement or shared understanding about something.</p>
103
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "Before we proceed, I want to make sure we're all on the same page."</p>
104
+ </div>
105
+
106
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
107
+ <h3 class="font-bold text-lg text-green-700 mb-2">"Blue sky thinking"</h3>
108
+ <p class="text-gray-600 mb-3">Creative thinking without limitations or constraints.</p>
109
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "In our brainstorming session, let's do some blue sky thinking."</p>
110
+ </div>
111
+
112
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
113
+ <h3 class="font-bold text-lg text-green-700 mb-2">"Take it offline"</h3>
114
+ <p class="text-gray-600 mb-3">To discuss something privately or outside of the current meeting.</p>
115
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "That's an interesting point - let's take it offline after the meeting."</p>
116
+ </div>
117
+
118
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
119
+ <h3 class="font-bold text-lg text-green-700 mb-2">"Bang for your buck"</h3>
120
+ <p class="text-gray-600 mb-3">Getting good value for money spent.</p>
121
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "This software gives us the most bang for our buck."</p>
122
+ </div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- Phrasal Verbs Tab -->
127
+ <div id="phrasal" class="tab-content p-6">
128
+ <h2 class="text-2xl font-bold text-blue-800 mb-6 flex items-center">
129
+ <i class="fas fa-comments mr-3 text-purple-500"></i> Phrasal Verbs for Business
130
+ </h2>
131
+
132
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
133
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
134
+ <h3 class="font-bold text-lg text-purple-700 mb-2">"Follow up"</h3>
135
+ <p class="text-gray-600 mb-3">To pursue or check on something previously discussed.</p>
136
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "I'll follow up with the client next week about their decision."</p>
137
+ </div>
138
+
139
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
140
+ <h3 class="font-bold text-lg text-purple-700 mb-2">"Phase out"</h3>
141
+ <p class="text-gray-600 mb-3">To gradually discontinue something.</p>
142
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "We're phasing out the old software system by the end of the year."</p>
143
+ </div>
144
+
145
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
146
+ <h3 class="font-bold text-lg text-purple-700 mb-2">"Scale up"</h3>
147
+ <p class="text-gray-600 mb-3">To increase in size, amount, or production.</p>
148
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "We need to scale up production to meet the increased demand."</p>
149
+ </div>
150
+
151
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
152
+ <h3 class="font-bold text-lg text-purple-700 mb-2">"Break down"</h3>
153
+ <p class="text-gray-600 mb-3">To analyze or separate something into smaller parts.</p>
154
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "Let's break down the project into manageable tasks."</p>
155
+ </div>
156
+
157
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
158
+ <h3 class="font-bold text-lg text-purple-700 mb-2">"Draw up"</h3>
159
+ <p class="text-gray-600 mb-3">To prepare or write a document or plan.</p>
160
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "The legal team will draw up the contract by Friday."</p>
161
+ </div>
162
+
163
+ <div class="term-card bg-gray-50 p-6 rounded-lg border border-gray-200">
164
+ <h3 class="font-bold text-lg text-purple-700 mb-2">"Run by"</h3>
165
+ <p class="text-gray-600 mb-3">To present an idea or proposal to someone for their opinion.</p>
166
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "I'd like to run these figures by you before the meeting."</p>
167
+ </div>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ </div>
172
+
173
+ <script>
174
+ // Tab functionality
175
+ const tabBtns = document.querySelectorAll('.tab-btn');
176
+ const tabContents = document.querySelectorAll('.tab-content');
177
+
178
+ tabBtns.forEach(btn => {
179
+ btn.addEventListener('click', () => {
180
+ // Remove active class from all buttons and contents
181
+ tabBtns.forEach(b => b.classList.remove('active'));
182
+ tabContents.forEach(c => c.classList.remove('active'));
183
+
184
+ // Add active class to clicked button and corresponding content
185
+ btn.classList.add('active');
186
+ const tabId = btn.getAttribute('data-tab');
187
+ document.getElementById(tabId).classList.add('active');
188
+ });
189
+ });
190
+
191
+ // Slang terms data
192
+ const slangTerms = [
193
+ { term: "A Cold One", meaning: "Beer", example: "Let's grab a cold one after work." },
194
+ { term: "Accadacca", meaning: "How Aussies refer to Australian band ACDC", example: "Accadacca is playing at the pub tonight!" },
195
+ { term: "Ankle Biter", meaning: "Child", example: "I can't come out, I've got the ankle biters this weekend." },
196
+ { term: "Arvo", meaning: "Afternoon (S'Arvo = this afternoon!)", example: "See you this arvo for the barbie." },
197
+ { term: "Aussie Salute", meaning: "Wave to scare the flies", example: "You'll see plenty of Aussie salutes in the outback." },
198
+ { term: "Avo", meaning: "Avocado", example: "Put some avo on my toast, please." },
199
+ { term: "Bail", meaning: "To cancel plans", example: "Bruce bailed on us again." },
200
+ { term: "Barbie", meaning: "Barbecue", example: "Bring some snags for the barbie." },
201
+ { term: "Bathers", meaning: "Swimsuit", example: "Don't forget your bathers - we're going to the beach." },
202
+ { term: "Beauty!", meaning: "Great! Most often exclaimed as 'You Beauty'", example: "You beauty! We got the tickets!" },
203
+ { term: "Billabong", meaning: "A pond in a dry riverbed", example: "We camped by the billabong last night." },
204
+ { term: "Billy", meaning: "Teapot (In the Outback on the fire)", example: "Put the billy on for some tea." },
205
+ { term: "Bloody", meaning: "Very. Used to extenuate a point", example: "That's bloody brilliant!" },
206
+ { term: "Bloody oath", meaning: "yes or its true", example: "'You right mate?'... 'Bloody Oath'" },
207
+ { term: "Bludger", meaning: "Someone who's lazy, generally also who relies on others", example: "Stop being a bludger and help out!" },
208
+ { term: "Bogan", meaning: "This word is used for people who are rednecks", example: "He's such a bogan with his mullet and flannie." },
209
+ { term: "Booze Bus", meaning: "Police vehicle used to catch drunk drivers", example: "Watch out for the booze bus on Friday nights." },
210
+ { term: "Bottle-O", meaning: "Bottle Shop, basically a place to buy alcohol", example: "I'm just ducking to the bottle-o for some goon." },
211
+ { term: "Brekky", meaning: "Breakfast", example: "Let's meet for brekky before work." },
212
+ { term: "Brolly", meaning: "Umbrella", example: "Better take your brolly - it might rain." },
213
+ { term: "Bruce", meaning: "An Aussie Bloke", example: "Bruce is coming over for a coldie." },
214
+ { term: "Buckleys Chance", meaning: "little chance", example: "You've got Buckleys chance of getting a ticket now." },
215
+ { term: "Budgie Smugglers", meaning: "Speedos", example: "Check out Bruce in his budgie smugglers!" },
216
+ { term: "Buggered", meaning: "Exhausted", example: "I'm absolutely buggered after that hike." },
217
+ { term: "Bush", meaning: "Out in the countryside away from civilisation", example: "He's gone bush for the weekend." },
218
+ { term: "Cab Sav", meaning: "Cabernet Sauvignon", example: "I'll have a glass of Cab Sav, thanks." },
219
+ { term: "Cactus", meaning: "Dead, Broken", example: "My phone's cactus after I dropped it." },
220
+ { term: "Choc A Bloc", meaning: "Full", example: "The pub was choc a bloc on Friday night." },
221
+ { term: "Choccy Biccy", meaning: "Chocolate Biscuit", example: "Want a choccy biccy with your tea?" },
222
+ { term: "Chook", meaning: "Chicken", example: "We're having roast chook for dinner." },
223
+ { term: "Chrissie", meaning: "Christmas", example: "What are you doing for Chrissie this year?" },
224
+ { term: "Ciggy", meaning: "a Cigarette", example: "I'm just going out for a quick ciggy." },
225
+ { term: "Clucky", meaning: "feeling maternal", example: "She's gone all clucky since her sister had a baby." },
226
+ { term: "Cobber", meaning: "Very good friend", example: "Alright me 'ol cobber, how ya going?" },
227
+ { term: "Coldie", meaning: "Beer", example: "Come over for a few coldie's mate." },
228
+ { term: "Coppers", meaning: "Policemen", example: "The coppers pulled me over for speeding." },
229
+ { term: "Crack the shits", meaning: "Getting angry at someone or something", example: "Don't crack the shits, it was just a joke." },
230
+ { term: "Crikey", meaning: "an expression of surprise", example: "Crikey! Look at the size of that spider!" },
231
+ { term: "Crook", meaning: "Being ill or angry", example: "Don't go crook on me for getting crook." },
232
+ { term: "Dag", meaning: "Someone who's a bit of a nerd or geek", example: "He's a bit of a dag but he's a good bloke." },
233
+ { term: "Daks", meaning: "Trousers", example: "Tracky daks = sweatpants (tracksuit pants)" },
234
+ { term: "Dardy", meaning: "cool", example: "That new ute is dardy, mate!" },
235
+ { term: "Deadset", meaning: "True", example: "Deadset? You're moving to Perth?" },
236
+ { term: "Defo", meaning: "Definitely", example: "I'll defo be there on Saturday." },
237
+ { term: "Devo", meaning: "Devastated", example: "I'm devo that my team lost." },
238
+ { term: "Drongo", meaning: "a Fool", example: "Don't be a drongo mate, check your facts." },
239
+ { term: "Dunny", meaning: "Toilet", example: "I'll be back in a sec, just going to the dunny." },
240
+ { term: "Durry", meaning: "Cigarette", example: "Can I bum a durry off ya?" },
241
+ { term: "Esky", meaning: "An insulated container that keeps things cold (usually beers)", example: "Don't forget to pack the esky for the road trip." },
242
+ { term: "Facey", meaning: "Facebook", example: "I saw it on Facey this morning." },
243
+ { term: "Fair Dinkum", meaning: "Honestly?", example: "'Fair Dinkum?' ... 'Fair Dinkum!'" },
244
+ { term: "Flannie / Flanno", meaning: "flannelette shirt", example: "He's wearing his flanno even though it's 30 degrees." },
245
+ { term: "Flat out", meaning: "Really busy", example: "I've been flat out like a lizard drinking all week." },
246
+ { term: "Footy", meaning: "Football (AFL / Aussie Rules)", example: "Are you going to the footy this weekend?" },
247
+ { term: "Frothy", meaning: "Beer", example: "I could go for a frothy right about now." },
248
+ { term: "Furphy", meaning: "rumours or stories that are improbable or absurd", example: "That's just a furphy someone started to scare people." },
249
+ { term: "G'day", meaning: "Hello", example: "G'day mate, how ya going?" },
250
+ { term: "Galah", meaning: "an Australian cockatoo with a reputation for not being bright, hence a galah is also a stupid person", example: "Don't be such a galah, that's not how it works." },
251
+ { term: "Gnarly", meaning: "awesome - often used by surfers", example: "That wave was gnarly, dude!" },
252
+ { term: "Going off", meaning: "busy, lots of people / angry person", example: "The pub was going off last night." },
253
+ { term: "Good On Ya", meaning: "Good work", example: "You fixed the car? Good on ya, mate!" },
254
+ { term: "Goon", meaning: "the best invention ever produced by mankind. Goon is a cheap, boxed wine", example: "We drank goon all night at the backpackers." },
255
+ { term: "Hard yakka", meaning: "Hard work", example: "It's been hard yakka getting this project finished." },
256
+ { term: "Heaps", meaning: "loads, lots, many", example: "There were heaps of people at the beach." },
257
+ { term: "Hoon", meaning: "Hooligan (normally driving badly!)", example: "The hoons were doing burnouts in the car park." },
258
+ { term: "Iffy", meaning: "bit risky or unreasonable", example: "That deal sounds a bit iffy to me." },
259
+ { term: "Knickers", meaning: "female underwear", example: "She got her knickers in a twist over nothing." },
260
+ { term: "Lappy", meaning: "Laptop", example: "I left my lappy at work." },
261
+ { term: "Larrikin", meaning: "Someone who's always up for a laugh, bit of a harmless prankster", example: "He's a bit of a larrikin but means well." },
262
+ { term: "Legless", meaning: "Someone who is really drunk", example: "Bruce got legless at the work party." },
263
+ { term: "Lollies", meaning: "Sweets", example: "Want some lollies from the shop?" },
264
+ { term: "Maccas", meaning: "McDonalds", example: "Let's grab some Maccas on the way home." },
265
+ { term: "Manchester", meaning: "Sheets / Linen etc.", example: "The manchester department is on the third floor." },
266
+ { term: "Mongrel", meaning: "Someone who's a bit of a dick", example: "That mongrel stole my parking spot!" },
267
+ { term: "Mozzie", meaning: "Mosquito", example: "The mozzies are bad near the river." },
268
+ { term: "No Drama", meaning: "No problem / it's ok", example: "No drama, mate, I can help you with that." },
269
+ { term: "No Worries", meaning: "No problem / it's ok", example: "No worries, she'll be right." },
270
+ { term: "No Wucka's", meaning: "A truly Aussie way to say 'no worries'", example: "No wucka's mate, I've got it covered." },
271
+ { term: "Nuddy", meaning: "Naked", example: "He was running around in the nuddy after too many coldies." },
272
+ { term: "Outback", meaning: "The interior of Australia", example: "We're heading to the outback for our holiday." },
273
+ { term: "Pash", meaning: "to kiss", example: "They were pashing behind the pub." },
274
+ { term: "Piece of Piss", meaning: "easy", example: "That exam was a piece of piss." },
275
+ { term: "Piss Off", meaning: "go away, get lost", example: "Piss off, I'm busy!" },
276
+ { term: "Piss Up", meaning: "a party, a get together", example: "There's a piss up at Bruce's place on Saturday." },
277
+ { term: "Pissed", meaning: "Intoxicated, Drunk", example: "He was so pissed he couldn't stand up." },
278
+ { term: "Pissed Off", meaning: "Annoyed", example: "I'm really pissed off about what happened." },
279
+ { term: "Rack Off", meaning: "The less offensive way to tell someone to 'F Off'!", example: "Rack off, will ya?" },
280
+ { term: "Rapt", meaning: "Very happy", example: "I'm rapt with my new job." },
281
+ { term: "Reckon", meaning: "for sure", example: "'You Reckon?'... 'I reckon!'" },
282
+ { term: "Ripper", meaning: "That's fantastic mate!", example: "You little ripper! We won the lottery!" },
283
+ { term: "Root Rat", meaning: "someone who enjoys sex (maybe a little too much)", example: "Bruce is a bit of a root rat since his divorce." },
284
+ { term: "Rooted", meaning: "Tired or Broken", example: "I'm rooted after that long shift." },
285
+ { term: "Runners", meaning: "Trainers, Sneakers", example: "I need new runners for the gym." },
286
+ { term: "Sanger", meaning: "Sandwich", example: "I made a vegemite sanger for lunch." },
287
+ { term: "Servo", meaning: "Service Station / Garage", example: "We need to stop at the servo for petrol." },
288
+ { term: "Shark biscuit", meaning: "kids at the beach", example: "The shark biscuits are having fun in the waves." },
289
+ { term: "Sheila", meaning: "A woman", example: "There was a sheila asking for you at the bar." },
290
+ { term: "She'll be apples", meaning: "Everything will be alright", example: "Don't stress, she'll be apples." },
291
+ { term: "Shoot Through", meaning: "To leave", example: "I'm going to shoot through before it gets late." },
292
+ { term: "Sick", meaning: "awesome", example: "That's really sick mate, where'd you get it?" },
293
+ { term: "Sickie", meaning: "a sick day off work", example: "I think I'll pull a sickie tomorrow." },
294
+ { term: "Skull", meaning: "To down a beer", example: "Skull your drink, mate!" },
295
+ { term: "Slab", meaning: "A carton of beers", example: "Bring a slab to the party." },
296
+ { term: "Smoko", meaning: "Cigarette break", example: "I'm just going for smoko." },
297
+ { term: "Snag", meaning: "Sausage", example: "Throw another snag on the barbie." },
298
+ { term: "Stiffy", meaning: "Erection", example: "He got a stiffy during the massage." },
299
+ { term: "Stoked", meaning: "Happy, Pleased", example: "I'm stoked with my new car." },
300
+ { term: "Straya", meaning: "Australia", example: "Good on ya, Straya!" },
301
+ { term: "Strewth", meaning: "An exclamation of surprise", example: "Strewth! Look at the size of that!" },
302
+ { term: "Stubby", meaning: "a bottle of beer", example: "Pass me a stubby from the esky." },
303
+ { term: "Stubby Holder", meaning: "Used so your hands don't get cold when holding your beer", example: "Don't forget your stubby holder for the cricket." },
304
+ { term: "Stuffed", meaning: "Tired", example: "I'm stuffed after that long flight." },
305
+ { term: "Sunnies", meaning: "Sunglasses", example: "It's bright out - better grab your sunnies." },
306
+ { term: "Swag", meaning: "Single bed you can roll up, a bit like a sleeping bag", example: "We slept in swags under the stars." },
307
+ { term: "Tea", meaning: "Dinner", example: "What's for tea tonight?" },
308
+ { term: "Tinny", meaning: "Can of beer or small boat", example: "Grab a tinny from the fridge." },
309
+ { term: "Thongs", meaning: "Flip Flops", example: "Don't forget your thongs for the beach." },
310
+ { term: "True Blue", meaning: "Genuinely Australian", example: "He's a true blue Aussie bloke." },
311
+ { term: "Tucker", meaning: "Food", example: "The tucker at the pub is pretty good." },
312
+ { term: "Two Up", meaning: "A gambling game played on Anzac day", example: "We played two up at the dawn service." },
313
+ { term: "U-IE", meaning: "to take a U-Turn when driving", example: "Do a U-ie here and we'll go back." },
314
+ { term: "Up Yourself", meaning: "Stuck up", example: "Don't get up yourself just because you got promoted." },
315
+ { term: "Woop Woop", meaning: "middle of nowhere", example: "He lives out woop woop." },
316
+ { term: "Ya", meaning: "You", example: "How ya going?" },
317
+ { term: "Yous", meaning: "(youse) plural of you!", example: "What are yous up to tonight?" }
318
+ ];
319
+
320
+ // Populate slang terms
321
+ const slangContainer = document.querySelector('#slang .grid');
322
+
323
+ slangTerms.forEach(term => {
324
+ const termCard = document.createElement('div');
325
+ termCard.className = 'term-card bg-gray-50 p-6 rounded-lg border border-gray-200';
326
+ termCard.innerHTML = `
327
+ <h3 class="font-bold text-lg text-blue-700 mb-2">${term.term}</h3>
328
+ <p class="text-gray-600 mb-3">${term.meaning}</p>
329
+ <p class="text-sm text-gray-500"><span class="font-semibold">Example:</span> "${term.example}"</p>
330
+ `;
331
+ slangContainer.appendChild(termCard);
332
+ });
333
+
334
+ // Search functionality
335
+ const searchInput = document.getElementById('search');
336
+
337
+ searchInput.addEventListener('input', () => {
338
+ const searchTerm = searchInput.value.toLowerCase();
339
+ const termCards = document.querySelectorAll('.term-card');
340
+
341
+ termCards.forEach(card => {
342
+ const text = card.textContent.toLowerCase();
343
+ if (text.includes(searchTerm)) {
344
+ card.style.display = 'block';
345
+ } else {
346
+ card.style.display = 'none';
347
+ }
348
+ });
349
+ });
350
+ </script>
351
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=madansa7/aussie-language" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
352
+ </html>