-
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.
adding multiple posts capability (#9)
* adding logs metadata and second post * adding file extensions * adding links to markdown instead of rendering * parameterizing link * using react-collapse * trying events * cleaning up mapping * adding focus fetching * adding onclick
- Loading branch information
Showing
6 changed files
with
178 additions
and
32 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# dplogs : Behind the scenes | ||
|
||
<p> | ||
React | ||
Github Pages | ||
Azure Application Insights | ||
Visual Studio Code | ||
Ubuntu | ||
Git | ||
</p> |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
{ | ||
"key":2, | ||
"datetime":"2017-10-01T16:23:00.000Z", | ||
"title":"dplogs_:_Behind_the_scenes", | ||
"filename":"2017-10-01_16:23.md", | ||
"tags":["react","ui","javascript","blog"] | ||
}, | ||
{ | ||
"key":1, | ||
"datetime":"2017-08-20T19:27:00.000Z", | ||
"title":"Hello_World_!", | ||
"filename":"2017-08-20_19:27.md", | ||
"tags":["react","miscellaneous"] | ||
} | ||
] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.ReactCollapse--collapse { | ||
max-width: auto; | ||
border: 1px solid rgba(3, 169, 244, 0.3); | ||
border-radius: 10px; | ||
background-color: rgba(255, 255, 255, 0.5); | ||
margin-left: auto ; | ||
margin-right: auto ; | ||
margin-top: 1%; | ||
margin-left: 1%; | ||
margin-right: 1%; | ||
cursor: pointer; | ||
} | ||
.ReactCollapse--collapse:hover { | ||
border-color: cyan; | ||
} |