shop.html 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <!--
  2. girishm.nfshost.com is the source for personal webpage (www.girishm.info or its alias www.girishm.nfshost.com) of Girish M
  3. Copyright &copy; 2020 Girish M
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <https://www.gnu.org/licenses/>
  14. Intensify by TEMPLATED
  15. templated.co @templatedco
  16. Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
  17. -->
  18. <!DOCTYPE HTML>
  19. <html lang="en">
  20. <head>
  21. <title>Shop</title>
  22. <meta charset="utf-8"/>
  23. <meta name="viewport" content="width=device-width, initial-scale=1"/>
  24. <link rel="stylesheet" href="../css/main.css"/>
  25. </head>
  26. <body>
  27. <!-- -->
  28. <!-- Header -->
  29. <header id="header">
  30. <nav class="left">
  31. <a href="#menu"><span>Menu</span></a>
  32. </nav>
  33. <a href="shop.html" class="logo">Shop</a>
  34. </header>
  35. <!-- Menu -->
  36. <nav id="menu">
  37. <ul class="links">
  38. <li><a href="../../index.html">Home</a></li>
  39. <li><a href="../html/services.html">Services</a></li>
  40. <li><a href="../html/project.html">Projects</a></li>
  41. <li><a href="../html/workExperience.html">Experience</a></li>
  42. <li><a href="../html/education.html">Education</a></li>
  43. <li><a href="../html/writing.html">Blog</a></li>
  44. <li><a href="../html/photo.html">Photos</a></li>
  45. <li><a href="../html/shop.html">Shop</a></li>
  46. <li><a href="../html/contact.html">Contact</a></li>
  47. <li><a href="../html/subscribe.html">Hire me</a></li>
  48. </ul>
  49. </nav>
  50. <!-- Main -->
  51. <section id="main" class="wrapper">
  52. <div class="inner flex flex-3">
  53. <div class="flex-item box">
  54. <div class="image fit">
  55. <img src="../img/2020Setup.jpg" alt="setup image"/>
  56. </div>
  57. <div class="content">
  58. <h3>Own this freedom respecting computer for your personal use or work.</h3>
  59. <p>
  60. <b>Unique custom rig.</b>
  61. <i>Hardware Specs</i> - Intel(R) Core(TM)2 CPU L9400, 8GB DDR3 RAM, 240GB SSD,
  62. 1TB external HDD, Dell U2412M 24" (1920x1200@60Hz) display x 2 (Grade A condition), Dell external wired
  63. mouse and keyboard, detachable Logitech C270 HD WebCam and X200s Docking station.
  64. <b>All peripherals in excellent condition and tested thoroughly.</b>
  65. <i>Software Specs</i> -
  66. <u>Firmware</u> - Libreboot (a flavor of Coreboot) BIOS. Proprietary BIOS and Intel management engine (ME) have been me
  67. removed.
  68. <u>Operating System</u> - Trisquel 8.0 - A fully free GNU/Linux operating system.
  69. <u>Networking</u> - Wired Ethernet (1GBPS) and wireless to connect to internet using Tor or VPN.
  70. <u>Desktop environment</u> - Mate desktop environment and GNOME.
  71. <u>Web Browser</u> - Abrowser 78.0.2 with GNU LibreJS, HTTPS Everywhere, Onion browser button and
  72. Third-party request blocker addons.
  73. <u>Email</u> - Icedove email client with Enigmail addon.
  74. To know more, read my blog about it <a href="../writings/MyComputer.html">here</a>
  75. Interested in buying? Place an order below. (Price inclusive of shipping and taxes)
  76. <i>Shipping information</i> - Shipped within 5 days of payment. Worldwide shipping with UPS or DHL.
  77. Estimated
  78. delivery time depends on your location.
  79. <i>Customisation</i> - Software customisation available on request.
  80. </p>
  81. <div id="smart-button-container">
  82. <div style="text-align: center;">
  83. <div id="paypal-button-container"></div>
  84. </div>
  85. </div>
  86. <script src="https://www.paypal.com/sdk/js?client-id=sb&currency=USD"
  87. data-sdk-integration-source="button-factory"></script>
  88. <script>
  89. function initPayPalButton() {
  90. paypal.Buttons({
  91. style: {
  92. shape: 'rect',
  93. color: 'gold',
  94. layout: 'vertical',
  95. label: 'checkout',
  96. },
  97. createOrder: function (data, actions) {
  98. return actions.order.create({
  99. purchase_units: [{
  100. "description": "Unique rig - A headless Libreboot X200s with two 24\" external displays, detachable HD webcam and docking station.",
  101. "amount": {
  102. "currency_code": "USD",
  103. "value": 1840.2,
  104. "breakdown": {
  105. "item_total": {"currency_code": "USD", "value": 1390},
  106. "shipping": {"currency_code": "USD", "value": 200},
  107. "tax_total": {"currency_code": "USD", "value": 250.2}
  108. }
  109. }
  110. }]
  111. });
  112. },
  113. onApprove: function (data, actions) {
  114. return actions.order.capture().then(function (details) {
  115. alert('Transaction completed by ' + details.payer.name.given_name + '!');
  116. });
  117. },
  118. onError: function (err) {
  119. console.log(err);
  120. }
  121. }).render('#paypal-button-container');
  122. }
  123. initPayPalButton();
  124. </script>
  125. </div>
  126. </div>
  127. </div>
  128. </section>
  129. <!-- Footer -->
  130. <footer id="footer">
  131. <div class="inner">
  132. <ul class="actions">
  133. <li><span class="icon fa-envelope"></span>contact at girishm dot info</li>
  134. <li><a href="../../gm.asc">GPG key</a></li>
  135. <li><a href="https://xmpp.org/software/clients.html">XMPP chat</a> - girishm at member dot fsf dot org
  136. </li>
  137. </ul>
  138. </div>
  139. <div class="copyright">
  140. <p>Copyright &copy; 2020, Girish M, <img alt="Creative Commons License" style="border-width:0"
  141. src="../img/cc.png"/>
  142. <br/>
  143. This work is licensed under a <a rel="license"
  144. href="http://creativecommons.org/licenses/by/4.0/">Creative
  145. Commons
  146. Attribution 4.0 International License</a>. The source for this web-page can be found <a
  147. href="https://notabug.org/girishm/girishm.nfshost.com/src/master/assets/html/shop.html">here</a>
  148. </p>
  149. &copy; Untitled. Design <a href="https://templated.co">TEMPLATED</a>. Images <a
  150. href="https://unsplash.com">Unsplash</a>.
  151. </div>
  152. <a href="../../javascript.html" rel="jslicense">JavaScript license information</a>
  153. </footer>
  154. <!-- Scripts -->
  155. <script src="../js/jquery.min.js"></script>
  156. <script src="../js/jquery.scrolly.min.js"></script>
  157. <script src="../js/skel.min.js"></script>
  158. <script src="../js/util.js"></script>
  159. <script src="../js/main.js"></script>
  160. <script src="../fcf-assets/js/fcf.just-validate.min.js"></script>
  161. <script src="../fcf-assets/js/fcf.form.js"></script>
  162. </body>
  163. </html>