Skip to content

Commit

Permalink
dist
Browse files Browse the repository at this point in the history
  • Loading branch information
zilvinas committed Oct 15, 2024
1 parent c21df21 commit 4dc9791
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/webstorm-icon-logo.svg" />
<link rel="icon" type="image/svg+xml" href="/dist/webstorm-icon-logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WS playground</title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/dist/style.css">
<script type="module" crossorigin src="/dist/assets/index-BV_o50Ui.js"></script>
</head>
<body>
<header class="logo">
<a href="https://www.jetbrains.com/webstorm/">
<img src="/webstorm-logo.svg" alt="WebStorm logo" width="344"
<img src="/dist/webstorm-logo.svg" alt="WebStorm logo" width="344"
height="90">
</a>
</header>
Expand All @@ -33,8 +34,7 @@ <h1 class="title">
</section>
</main>
<footer class="technologies">
<img src="/technologies.svg" alt="List of supported technologies">
<img src="/dist/technologies.svg" alt="List of supported technologies">
</footer>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
40 changes: 40 additions & 0 deletions index.html.o
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/webstorm-icon-logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WS playground</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header class="logo">
<a href="https://www.jetbrains.com/webstorm/">
<img src="/webstorm-logo.svg" alt="WebStorm logo" width="344"
height="90">
</a>
</header>
<main id="app">
<h1 class="title">
Thank you for trying it out. <br /> Your first project is up and running
now.
</h1>
<section class="counter">
<div class="counter-info">
<p class="counter-text">Counter is</p>
<p class="counter-value" id="counter-value"></p>
</div>
<div class="counter-interaction">
<button id="increaseByOne" type="button">+1</button>
<button id="increaseByTwo" type="button">+2</button>
<button id="decreaseByOne" type="button">-1</button>
<button id="decreaseByTwo" type="button">-2</button>
</div>
</section>
</main>
<footer class="technologies">
<img src="/technologies.svg" alt="List of supported technologies">
</footer>
<script type="module" src="/src/main.ts"></script>
</body>
</html>

0 comments on commit 4dc9791

Please sign in to comment.