My first Django project

Ok so before I began this little project, I didn't even know what Django was. In just two days, I went from zero knowledge in Django, HTML or CSS into creating this: My first blog site made using Django!It's a very simple blog site, but we all start somewhere…

HTML very basics

Not learned HTML yet, but these are some of the things I have picked up so far through my first Django project. HTML tagWhen writing in HTML, we must first introduce this by using the tags. Everything we want to write goes in between: <html> <CONTENT GOES…

Git guide for beginners

Incomplete | Install gitInstall git from the official website: https://git-scm.com Authenticating gitWe need to set up our Github username and password. Once git is installed, set it up using these commands on Terminal: git config --global user.name <Github username> git config --global user.email <Github…

Markdown cheatsheet

Handy guide for how to write in markdown, with markdown and preview. The preview is generated on Atom using Github markdown preview which you can enable by going to (Packages > Markdown Preview > Toggle Preview). Formatting textYou can format text into italics, bold, bold italics and strikethrough. Markdown doesn't…

Code and links

CodeTo insert pieces of code inline just like so, wrap the code between ` and ` characters. To insert longer blocks of code, wrap them between ``` and ``` characters. Example: <pre><code class="javascript">function test() { console.log(&quot;Hello World&quot;); }</code></pre&…

New post

Hello and welcome to Ghost! A beautiful blog maker application. This is my first blog testing Ghost. I am currently working on localhost. I'll try to commit these changes using git and see if it works.…