Showcase the blog site elements

Sometimes, you can give it a little push

The standard paragraphs

Welcome to this demo page! Here, you’ll get an exclusive preview of our cutting-edge platform designed to revolutionise your digital experience. Our intuitive interface, powered by the latest advancements in technology, offers seamless navigation and unparalleled functionality. Explore the various features that make our platform stand out, including real-time data analytics, customisable dashboards, and robust security measures to protect your information. Whether you’re a small business looking to streamline operations or a large enterprise aiming to enhance customer engagement, our solution is tailored to meet your needs. Dive in and discover how we can transform your digital landscape.


Headings by default:

H1 Default styles for headings

H2 Default styles for headings

H3 Default styles for headings

H4 Default styles for headings

H5 Default styles for headings
H6 Default styles for headings

Tables

Header 1Header 2Header 3Header 4Header 5
Row:1 Cell:1Row:1 Cell:2Row:1 Cell:3Row:1 Cell:4Row:1 Cell:5
Row:2 Cell:1Row:2 Cell:2Row:2 Cell:3Row:2 Cell:4Row:2 Cell:5
Row:3 Cell:1Row:3 Cell:2Row:3 Cell:3Row:3 Cell:4Row:3 Cell:5
Row:4 Cell:1Row:4 Cell:2Row:4 Cell:3Row:4 Cell:4Row:4 Cell:5
Row:5 Cell:1Row:5 Cell:2Row:5 Cell:3Row:5 Cell:4Row:5 Cell:5
Row:6 Cell:1Row:6 Cell:2Row:6 Cell:3Row:6 Cell:4Row:6 Cell:5

Quotes

A quote looks like this:

The longer I live, the more I realize that I am never wrong about anything, and that all the pains I have so humbly taken to verify my notions have only wasted my time!

George Bernard Shaw


Lists

Unordered list example:

  • Poutine drinking vinegar bitters.
  • Coloring book distillery fanny pack.
  • Venmo biodiesel gentrify enamel pin meditation.
  • Jean shorts shaman listicle pickled portland.
  • Salvia mumblecore brunch iPhone migas.

Ordered list example:

  1. Bitters semiotics vice thundercats synth.
  2. Literally cred narwhal bitters wayfarers.
  3. Kale chips chartreuse paleo tbh street art marfa.
  4. Mlkshk polaroid sriracha brooklyn.
  5. Pug you probably haven’t heard of them air plant man bun.

Syntax Highlighter

public class Program
{
    public static void Main(string[] args)
    {
        System.Console.WriteLine("Hello, World!");
    }
}
import re
import sys
import urllib.request
from pathlib import Path

IMG_RE = re.compile('<img[^>]+src="https:\/\/(?P<src>[^"]+)"')
DATE_RE = re.compile('(?P<date>[0-9]+\-[0-9]+\-[0-9]+)')
THUMB_RE = re.compile('thumbnail: (?P<thumb>.+)')
files = sorted(Path("_posts").glob("*.html"))

for file in files:
    filename = file.absolute().as_posix()
    date_prefix = DATE_RE.search(filename).group('date')
    with open(filename, 'r') as f:
        file_index = 0
        contents = f.read()
        for match in IMG_RE.finditer(contents):
            sourceurl = f"https://{match.group('src')}"
            thumburl = THUMB_RE.findall(contents)[0]
            extstart = sourceurl.rfind('.')
            extension = sourceurl[extstart:]
            newfile = date_prefix + '-image-{:04d}{}'.format(file_index, extension)
            file_index += 1
            print('{} => {}'.format(sourceurl, newfile))
            urllib.request.urlretrieve(sourceurl, '../assets/posts/blogger/' + newfile)
            contents = contents.replace(sourceurl, '/assets/posts/blogger/' + newfile)
            contents = contents.replace(thumburl, '/assets/posts/blogger/' + newfile)

    with open(filename, 'w') as f:
        f.write(contents)

YouTube Embed

Vimeo Embed


Images

bg



Related Posts

In case you missed it

A short update from me
A short update from me
It has been a while since I post a blog page on Blogger which was created back in 2013. So I took an opportunity to...
Issue with
Issue with "Don't track your own pageviews"
Do you use your own domain name with Blogger? Do you place “Blogger’s Stats Widget” on your page? Or do you regularly check up the...
Build your own Related Posts widget for Blogger
Build your own Related Posts widget for Blogger
I have visited many blog sites and most of them have "<b>Related Posts</b>" or "<b>You may also like -</b> " section for visitors who like...