How to edit/add blog post

To edit blog post:

1. Edit blog-post.html.

2. Look for this code:

<article>
<img src=”img/gallery/dentist/attorney-1.jpg” /> /*change this to the image source of featured image*/
<h2><a href=”#”>What To Do?</a></h2> /*Change this to the title of the blog post. You can also add link to the title by changing the # to the link where you want the title to redirect*/
<p>
Before calling a DUI Attorney<br/> /*this is the content of the blog post*/
<ul>
<li>a. Make a list of you’re the exact charges when you got arrested</li><br/>
<li>b. Look for a lawyer who spends at least half their time of cases DUI.</li><br/>
<li>c. Know how much they charge and what is your fee structure.</li><br/>
<li>d. Make a list of questions that you ask each lawyer during the trial, so every lawyer also decide whether you want to rent, you can compare the present.</li><br/>
<li>e. <a href=”tel:12345678“>Call Us NOW!</a></li><br/> /*to change the link in Call US NOW!, just change the ‘12345678’ to your contact number*/
</ul>
</p>
<div class=”a-meta a-meta-left”>
<i class=”fa fa-user”></i> Author | <i class=”fa fa-calendar”></i> 17 Apr 2014 | <i class=”fa fa-comment”></i> 0
</div>

</article>

3. Don’t forget to save changes and upload the file in your server.

Note: To add another blog post, just copy the whole blog-post.html and rename the file to another html (for example: blog-post2.html). Don’t forget to change the content of the new blog post.

To add blog post in the blog.

1. Edit blog.html.

2. Look for this code:

<article>
<a href=”blog-post.html“> /*this is the file of the blog post. If you created another blog post, change this to the name of the newly created blog post.*/
<div class=”article-img-pane”>
<img src=”img/gallery/dentist/attorney-1.jpg” /> /*this is the image source of the blog post thumbnail */
</div>
<h2>DUI Attorney Emergency</h2> /*this is the title of the blog post*/
<p class=”posts-summary”>
What to do before calling a DUI Attorney? /*this is the summary of the blog post*/
</p>
</a>
<div class=”a-meta”>
<span><i class=”fa fa-calendar”></i> 18 Apr 2014</span> <i class=”fa fa-comment”></i> 6 /*this is where you can edit the date and the number of comments */
</div>
</article>

3. Once you’re done editing, don’t forget to save changes and upload the file in the server.

Note: To add another blog post in the blog, just copy the code above and paste it before <article> or after </article>. Change the content to the new blog post.

 

 

Have more questions? Submit a request