diff options
| author | Ahmed Abdelhalim <[email protected]> | 2021-07-05 00:49:58 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2021-07-05 00:49:58 +0200 |
| commit | 936e7ebc1e581ec63bc4d4fbea8dd700ce8906de (patch) | |
| tree | 4cb9a8bfd65736f1f0f06ad24aeafa35e4d7eef8 /app/assets | |
| parent | 3455b28a2d83d4af43b5313991bc84e29bbd7395 (diff) | |
Convert the writing and projects section to use BEM
Diffstat (limited to 'app/assets')
| -rw-r--r-- | app/assets/index.html | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/app/assets/index.html b/app/assets/index.html index 871a859..33c68e0 100644 --- a/app/assets/index.html +++ b/app/assets/index.html @@ -206,12 +206,12 @@ </article> <article class="writing"> - <h1>Writing</h1> + <h1 class="writing__header section-header">Writing</h1> <article> - <h2> + <h2 class="writing__title"> The Publish/Subscribe Pattern on Rails </h2> - <p> + <p class="writing__content"> A <a href="https://www.toptal.com/ruby-on-rails/the-publish-subscribe-pattern-on-rails"> Toptal published blog post @@ -220,10 +220,10 @@ </p> </article> <article> - <h2> + <h2 class="writing__title"> Clean Code and the Art of Exception Handling </h2> - <p> + <p class="writing__content"> A <a href="https://www.toptal.com/abap/clean-code-and-the-art-of-exception-handling"> Toptal published blog post @@ -234,14 +234,14 @@ </article> <article class="projects"> - <h1>Projects</h1> + <h1 class="projects__header section-header">Projects</h1> <article> - <h2> + <h2 class="project__title"> <a href="https://git.sr.ht/~a14m/game-of-life"> Conway's Game of Life </a> </h2> - <p> + <p class="project__content"> A mono-repo with different command line interface (<abbr>CLI</abbr>) implementations for the <a href="https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life">Game of Life</a> in multiple languages (currently Ruby/Rust), with the automation for publishing updates to different package managers using a @@ -249,34 +249,34 @@ </p> </article> <article> - <h2> + <h2 class="project__title"> <a href="https://git.sr.ht/~a14m/OTW"> Over The Wire Solutions </a> </h2> - <p> + <p class="project__content"> Solutions for some of the <a href="https://overthewire.org/wargames/">OTW wargames</a> documented in a README files </p> </article> <article> - <h2> + <h2 class="project__title"> <a href="https://git.sr.ht/~a14m/HTB"> Hack The Box Solutions </a> </h2> - <p> + <p class="project__content"> Solutions for some of the <a href="https://hackthebox.eu">HTB machines</a> documented in a README files (learning security analysis) </p> </article> <article> - <h2> + <h2 class="project__title"> <a href="https://git.sr.ht/~a14m/a14m.srht.site"> a14m.srht.site </a> </h2> - <p> + <p class="project__content"> The source code, and deployment scripts for this website/CV . </p> </article> |
