Site icon Hip-Hop Website Design and Development

Make custom WordPress comments list

i’m making a custom WordPress template and I’ve made this HTML code for single comment template:

            <div class="comment" id="1">
          <div class="useravatar" style="background-image: url('[LINK]')"></div>
          <div class="textbox">
              <div class="dateauthor">[AUTHOR NAME] <span class="date">[DATE]</span></div>
              <div class="text">
                [COMMENT TEXT]
              </div>
          </div>
        </div>

But i’m getting only headache to find out how to make a loop o something else where I can use this.

Is there any good example for this cases?