Exclude Current Post from Recent Blog List

hi,

How can I exclude the current blog post the user is in from the Recent Post list?

Recent Posts

          {% for article in blog.articles limit:6 %}
              
                  

{{ article.title | truncate: 60 }}

                  

{{ article.published_at | date: "%b %d, %y" }}

              
          {% endfor %}
        
      

Use offset:

{% for article in blog.articles limit:6 offset:1 %}