Skip to content Skip to sidebar Skip to footer

Make Table of Content Blogspot 2

Table of Content
The table of contents on the blog is important because in addition to making it easier for readers / visitors to explore all the content of your blog in finding the articles they need, it will also increase the number of pageviews that will make search engines like and of course SEO. In order not to be a hassle because the blog is always updated, you can automatically create a blog content list page that is cool, nice, neat, organized by category or based on labels that will update yourself if there are new posts.

This time I will share and explain how to make a table of contents on an automatic blog according to labels, please follow the complete tutorial steps along with pictures easily and quickly for friends who want to automatically create a table of contents page based on labels on blogger.

What is a Sitemap?
Table of Contents is a set of xml Sitemap files containing a list of URLs for a specific website. A sitemap is a protocol that allows webmasters to notify search engines about the URLs available on the site and for crawling. Sitemaps can be created for posts, pages, labels and archives on a blog. But I'm going to focus on how to create a sitemap for a specific label on a blogger blog.
  1. Please open blogger> Page> Then click New page
  2. Add the code below to the HTML tab
  3. <style scoped="" type="text/css">
    .table-of-content{background-color:#fff;color:#444;font-family:Verdana,Geneva,Tahoma,Arial,Sans-serif;font-size:13px;font-weight:400;overflow:hidden;border-radius:4px;box-shadow:0 0 10px rgba(0,0,0,.2)}
    .table-of-content .toc-header{color:#444;font-family:inherit;font-weight:400;font-size:14px;background-color:#fff;margin:0;padding:15px;overflow:hidden;cursor:pointer;border-bottom:1px solid #ccc;transition:initial}
    .table-of-content .toc-header:hover{background-color:#fdfdfd}
    .table-of-content .toc-header:before{content:'';width:0;height:0;position:absolute;top:22px;right:15px;border:5px solid transparent;border-color:#aaa transparent transparent;transition:all .3s ease}
    .table-of-content .toc-header.active{color:#fc4f3f}
    .table-of-content .toc-header.active:before{border-color:#666 transparent transparent;top:16px;-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}
    .table-of-content .loading{display:block;padding:15px;text-decoration:blink}
    .table-of-content ol{margin:0;padding:0;list-style:none;transition:initial}
    .table-of-content li{line-height:normal!important;margin:0!important;padding:8px 8px 8px 15px!important;white-space:nowrap;text-align:left;overflow:hidden;background:#444359!important;transition:initial}
    .table-of-content a{color:#d9d9d9;text-decoration:none;font-size:86%;transition:initial}
    .table-of-content a:visited{color:#a2a2a9;transition:initial}
    .table-of-content a:hover,.table-of-content a:visited:hover{color:#ffc937;text-decoration:none;transition:initial}
    .post ol li:before{display:none}
    </style>
    <div class="table-of-content" id="table-of-content">
    <span class="loading">Memuat konten...</span></div>
    <script>
    var toc_config = {
    url: 'https://www.cssblogspot.com/',
    containerId: 'table-of-content',
    showNew: 15,
    newText: ' <strong style="font-weight:normal;font-style:normal;color:#fff;font-size:11px;background:#5c5a78;padding:1px 6px 3px 6px;line-height:normal;float:right;border-radius:3px;">baru</strong>',
    sortAlphabetically: {
    thePanel: true,
    theList: true
    },
    maxResults: 9999,
    activePanel: 1,
    slideSpeed: {
    down: 400,
    up: 400
    },
    slideEasing: {
    down: null,
    up: null
    },
    slideCallback: {
    down: function() {},
    up: function() {}
    },
    clickCallback: function() {},
    jsonCallback: '_toc',
    delayLoading: 0
    };
    </script>
    <script src="https://raw.githack.com/firefudh/design/master/toc.js"></script>
      

  4. If you want dark mode version:
  5. <style scoped="" type="text/css">
    .table-of-content{background-color:#222;color:#ddd;font-family:Verdana,Geneva,Tahoma,Arial,Sans-serif;font-size:13px;font-weight:400;overflow:hidden;border-radius:4px;box-shadow:0 0 10px rgba(0,0,0,.1)}
    .table-of-content .toc-header{color:#fff;font-family:inherit;font-weight:400;font-size:14px;background-color:#333;margin:0;padding:15px;overflow:hidden;cursor:pointer;border-top:1px solid #444;border-bottom:1px solid #222;transition:initial}
    .table-of-content .toc-header:hover{background-color:#3a3a3a}
    .table-of-content .toc-header:before{content:'';width:0;height:0;position:absolute;top:22px;right:15px;border:5px solid transparent;border-color:#aaa transparent transparent;transition:all .3s ease}
    .table-of-content .toc-header.active{background:#3a3a3a;color:#fff}
    .table-of-content .toc-header.active:before{border-color:#fff transparent transparent;top:16px;-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}
    .table-of-content .loading{display:block;padding:15px;text-decoration:blink}
    .table-of-content ol{margin:0;padding:0;list-style:none;transition:initial}
    .table-of-content li{line-height:normal!important;margin:0!important;padding:8px 8px 8px 15px!important;white-space:nowrap;text-align:left;overflow:hidden;background:#222!important;transition:initial}
    .table-of-content a{color:#aaa;text-decoration:none;font-size:86%;transition:initial}
    .table-of-content a:visited{color:#666;transition:initial}
    .table-of-content a:hover,.table-of-content a:visited:hover{color:#fff;text-decoration:none;transition:initial}
    .post ol li:before{display:none}
    </style>
    <div class="table-of-content" id="table-of-content">
    <span class="loading">Memuat konten...</span></div>
    <script>
    var toc_config = {
    url: 'https://www.cssblogspot.com/',
    containerId: 'table-of-content',
    showNew: 15,
    newText: ' <strong style="font-weight:normal;font-style:normal;color:#fff;font-size:11px;background:#009fef;padding:1px 6px 3px 6px;line-height:normal;float:right;border-radius:3px;">baru</strong>',
    sortAlphabetically: {
    thePanel: true,
    theList: true
    },
    maxResults: 9999,
    activePanel: 1,
    slideSpeed: {
    down: 400,
    up: 400
    },
    slideEasing: {
    down: null,
    up: null
    },
    slideCallback: {
    down: function() {},
    up: function() {}
    },
    clickCallback: function() {},
    jsonCallback: '_toc',
    delayLoading: 0
    };
    </script>
    <script src="https://raw.githack.com/firefudh/design/master/toc.js"></script>
    

  6. Save
Settings
  • Change url: 'https://www.cssblogspot.com/' with your url blog
  • showNew: 15 Shows values in articles marked with newText

Source :
  1. https://www.dte.web.id/2012/02/widget-daftar-isi-akordion-dengan.html
  2. https://www.arlinacode.com/2020/07/menerapkan-daftar-isi-menurut-label.html

Post a Comment for "Make Table of Content Blogspot 2"