-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from StockMonitorApp/update-values
Update website
- Loading branch information
Showing
1 changed file
with
64 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,67 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>StockMonitor</title> | ||
<meta name="description" content="StockMonitor brings the stock or index you're most interested in to your macOS menu bar. To have an even better sight on your investments you can show the current value of your stake. If the current stock price is higher than your buying price it turns green, when it's lower it turns red. It also shows the trend based on the last price one day before." /> | ||
<link rel="icon" href="./images/favicon.png" /> | ||
<link rel="stylesheet" type="text/css" href="./style.css" /> | ||
<script type="text/javascript" src="script.js"></script> | ||
<script type="text/javascript"> | ||
<!-- | ||
loadScreenshots(); | ||
loadVersions(); | ||
// --> | ||
</script> | ||
</head> | ||
<body> | ||
<div class="page-block" id="message"> | ||
<div class="container"> | ||
<span class="message-body"> | ||
Unfotunately, we had to shutdown the servers for StockMonitor, because this project did not find enough customers to cover the expenses. | ||
<span> | ||
</div> | ||
</div> | ||
<div class="page-block" id="header"> | ||
<div class="container"> | ||
<img src="./images/logo.png" srcset="./images/logo.png, ./images/[email protected] 2x" class="logo" alt="StockMonitor Logo" /> | ||
<h1>StockMonitor App</h1> | ||
<span class="subtitle"> | ||
StockMonitor brings the stocks you're interested in to your macOS menu bar. To have an even better look on your investments you can show the current value of your stake. Value changes can easily be displayed. It also shows the trend based on the last price one day before. | ||
</span> | ||
<span class="download-button"> | ||
<a href="https://apps.apple.com/app/id1543629323"> | ||
<img src="./images/download-on-the-mac-appstore.svg" alt="Download on the Mac AppStore" /> | ||
</a> | ||
</span> | ||
</div> | ||
</div> | ||
<div class="page-block"> | ||
<div class="container" id="screenshots"> | ||
<h2>Checkout some screenshots</h2> | ||
</div> | ||
</div> | ||
<div class="page-block"> | ||
<div class="container" id="versions"> | ||
<h2>Version History</h2> | ||
</div> | ||
</div> | ||
<div class="page-block" id="footer"> | ||
<div class="container"> | ||
<a href="tou_pp.html">Terms of Use & Privacy Policy</a><br/> | ||
<br/> | ||
Copywrite © 2020-<script>document.write(new Date().getFullYear())</script> Lukas Würzburger. All rights reserved | ||
</div> | ||
</div> | ||
</body> | ||
<head> | ||
<title>StockMonitor</title> | ||
<meta | ||
name="description" | ||
content="StockMonitor brings the stock or index you're most interested in to your macOS menu bar. To have an even better sight on your investments you can show the current value of your stake. If the current stock price is higher than your buying price it turns green, when it's lower it turns red. It also shows the trend based on the last price one day before." | ||
/> | ||
<link rel="icon" href="./images/favicon.png" /> | ||
<link rel="stylesheet" type="text/css" href="./style.css" /> | ||
<script type="text/javascript" src="script.js"></script> | ||
<script type="text/javascript"> | ||
<!-- | ||
loadScreenshots(); | ||
loadVersions(); | ||
// --> | ||
</script> | ||
</head> | ||
<body> | ||
<div class="page-block" id="header"> | ||
<div class="container"> | ||
<img | ||
src="./images/logo.png" | ||
srcset="./images/logo.png, ./images/[email protected] 2x" | ||
class="logo" | ||
alt="StockMonitor Logo" | ||
/> | ||
<h1>StockMonitor App</h1> | ||
<span class="subtitle"> | ||
StockMonitor brings the stocks you're interested in to your macOS menu | ||
bar. To have an even better look on your investments you can show the | ||
current value of your stake. Value changes can easily be displayed. It | ||
also shows the trend based on the last price one day before. | ||
</span> | ||
<span class="download-button"> | ||
<a href="https://apps.apple.com/app/id6738101067"> | ||
<img | ||
src="./images/download-on-the-mac-appstore.svg" | ||
alt="Download on the Mac AppStore" | ||
/> | ||
</a> | ||
</span> | ||
</div> | ||
</div> | ||
<div class="page-block"> | ||
<div class="container" id="screenshots"> | ||
<h2>Checkout some screenshots</h2> | ||
</div> | ||
</div> | ||
<div class="page-block"> | ||
<div class="container" id="versions"> | ||
<h2>Version History</h2> | ||
</div> | ||
</div> | ||
<div class="page-block" id="footer"> | ||
<div class="container"> | ||
<a href="tou_pp.html">Terms of Use & Privacy Policy</a><br /> | ||
<br /> | ||
Copywrite © 2020- | ||
<script> | ||
document.write(new Date().getFullYear()); | ||
</script> | ||
Lukas Würzburger - Emanuel Schmitt - All rights reserved | ||
</div> | ||
</div> | ||
</body> | ||
</html> |