about.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. ---
  2. layout: default
  3. title: About
  4. ---
  5. <section class="about">
  6. {% include page-title.html %}
  7. <article>
  8. <p class="about-copy">
  9. {{ site.title }} is a collection of notes, and cheat sheets on secure coding,
  10. testing, and other software development best practices. As these pages
  11. focus on ever-changing technologies, and evolving practices, the
  12. content is far from static.
  13. </p>
  14. <p>
  15. Most articles are succint* on purpose; {{ site.title }} is
  16. more documentation-like than a blog.
  17. <small>*Succintness relative to books, not blog posts.</small>
  18. </p>
  19. <p>
  20. All subjects in {{ site.title }} are scatterly covered in these sections:
  21. </p>
  22. <dl class="about-descriptions">
  23. <dt>Posts</dt>
  24. <dd>
  25. Notes, and summaries on coding, its tools, and technologies.
  26. </dd>
  27. <dt>Cheat sheets</dt>
  28. <dd>How-tos on tools, libraries, and practices.</dd>
  29. <dt>Bits</dt>
  30. <dd>Today-I-learned like micro posts.</dd>
  31. <dt>Playlists</dt>
  32. <dd>Talks, tutorials, and lectures sources to many ideas in Posts.</dd>
  33. </dl>
  34. </article>
  35. <div class="about-footer">
  36. <small>
  37. Crafted with
  38. <span class="heart" role="img" aria-label="love">♡</span> by
  39. <a rel="noopener noreferrer" href="{{site.author.website}}">
  40. {{ site.author.name }}
  41. </a>
  42. </small>
  43. </div>
  44. <h2>Licenses</h2>
  45. <p>
  46. Copyright &copy; René Maya. <small>Except where noted.</small>
  47. </p>
  48. <p>
  49. All of {{ site.title }} textual contents are licensed under Creative Commons
  50. <a href="{{ site.data.sites.licenses.by-sa }}">By-SA</a>.
  51. Code snippets are licensed
  52. <a href="{{ site.data.sites.licenses.isc }}">ISC</a>.
  53. </p>
  54. <p>
  55. {{ site.title }} codebase can be found at the official
  56. <a rel="nofollow noopener noreferrer" href="{{site.repo}}">
  57. repo.
  58. </a>
  59. </p>
  60. <h2>Disclaimer</h2>
  61. <p>
  62. The author(s) disclaim all warranties for any information herein. In no
  63. event shall the author(s) be liable for any special, direct, indirect, or
  64. consequential damages or any damages whatsoever resulting from loss of use,
  65. data or profits, whether in an action of contract, negligence or other
  66. tortious action, arising out of or in connection with the use or performance
  67. of the contents of this site.
  68. </p>
  69. </section>