support@electronthemes.com
+1 (305) 1234-5678

Style guide is the overview of a theme. It reflects the page and blog styles of the site. Anyone can easily get the idea of overall pages. Here is the styleguide of the page.

Heading H1

Their third of very likeness she'd creepeth hath own firmament  earth. Seed upon which that fish wherein deep his isn't beast moving set  abundantly appear evening fifth.

Heading H2

Replenish spirit make waters made  they're sea brought be, they're you which image rule waters likeness  beginning lesser fill saying fruit male void.

Heading H3

God. Likeness them his god moving, sea tree third to land of grass  and very two abundantly heaven beast kind evening his from the upon was  sea behold bring called set evening.

Heading H4

Open she'd. Light. Whales there  heaven gathered herb heaven for void in. Have, waters midst so gathered.  Lesser.

Heading H5

Were to of blind our on his got state in evaluate there lower up be  at in her writing them they'd that there gods, from destruction.

Heading H6

Night creepeth fly don't heaven sixth. Waters face their, whose  whales beast fourth gathered good from dominion evening.

You will see the naked URL & anchor text links. The naked URL will be like this https://ghost.org/ & the anchor text links will be like this Ghost CMS.

Quotes

Ghost is a fully open source, adaptable platform for building and running a modern online publication. We power blogs, magazines and journalists from Zappos to Sky News.

Images

You can upload images using the Image card. Once inserted you can display images beautifully into your content at different sizes (normal, full, and wide) and add captions if needed.

Normal image
Wide image
Full Width Image

Ghost supports image galleries for up to 9 images at a time, all of which are responsively optimised and organised to look their best no matter how many images you add or remove.

Bookmarks

With the Bookmark card you can present links in a much richer format. If the URL points to a page with right meta information it can show the page title, excerpt, author, publisher and even a preview image.

Ghost(Pro) - Official managed hosting for Ghost
The best Ghost managed hosting from the creators of the open source publishing platform. Spend less time on your server, more time on your site.
Premium and Free Ghost CMS Blog Themes Marketplace | Electronthemes
Ghost CMS Themes Marketplace for Premium & Free Ghost Themes, WordPress, HTML Website Templates for eCommerce, Blogging, and Also for Multipurpose Business Websites.

List

En  caso de que no lea Twitter, las noticias, o simplemente no tenga  suficiente de la oración legendaria del anfitrión de The Apprentice,  intente con este generador Trump lorem ipsum.


Una versión  artesanal, de lotes pequeños, de vertido artisinal del clásico generador  lorem ipsum, Hipster Ipsum le dará a su burla ese toque de cuello azul.

Unordered List

  • Darkness isn't his deep were god moveth hath greater.
  • Gathered deep, it moving god fruitful likeness.
  • Image tree midst after under said saying seas years
  • All kind unto heaven male, were may behold subdue every.

Ordered List

Face their two man green sea together morning herb to together  beast To tree give open.

  1. That. Wherein fruit, air called whose seas over.
  2. Their evening kind set said can't form open earth.
  3. Beast living  creeping beast face morning fifth green.
  4. Void creeping subdue, cattle  fill. Midst set.

Highlighting

Highlighting text can help bring important information immediately to the reader's attention. When creating a highlighting text, all you need to do is add a == before and after your text in a Markdown card.

Product Card

Display products beautifully with custom content including an image, description, button or rating, so you can add your favorite recommendations to any post.

Newsportal

Newsportal is a news and magazine ghost theme that is suitable for news portals, magazines, and blogs type websites. It’s a great ghost theme with a lot of features. It is very easy to set up and customize the theme. This theme is regular updates are provided, in addition to a fully responsive layout on top of a clean design.

Get Theme

Video

Bearing own them be. Seed multiply. Day there. In thing isn't  lights likeness that, beast fifth be.

Youtube video
Vimeo Video

Audio

So  god multiply abundantly them fish gathered fruit winged male  divided  make, together signs moved behold one without behold fill.

Sound Cloud Audio

Table

Title Description About Apple Fourth give over lesser abundantly his seas rule man you're, whales herb whales fruitful had gathering of. About Lemon Great herb place fifth wherein kind beast great greater they're man.

Title Description
About Apple Fourth give over lesser abundantly his seas rule man you're, whales herb whales fruitful had gathering of.
About Lemon Great herb place fifth wherein kind beast great greater they're man.

Code

If you’re a technical writer, you may want to use example snippets of code to teach your readers a particular syntax. Using a single backtick (`) around a word in a sentence, you can show a quick code snippet. three backticks (```) will turn an entire paragraph into a code block.

HTML

<div class="col-md-6 col-lg-4">
    <div class="single-author-card">
        <div class="author-card">
            <div class="author-img">
                <img src="assets/img/authors/author-2.jpg" alt="author">
                <!-- social media -->
                <div class="social-portfolio">
                    <a href="#"><i class="fab fa-facebook-f"></i></a>
                    <a href="#"><i class="fab fa-twitter"></i></a>
                    <a href="#"><i class="fab fa-linkedin-in"></i></a>
                </div>
            </div>
            <!-- author content -->
            <div class="author-content text-center">
                <div class="author-name">
                    <a href="#">Thomas Doe</a>
                </div>
                <div class="post-text">
                    <p>Season played better all season long. In 2019, the Wall Street Journal reviewed 25 hours of that year’s Olympics</p>
                </div>
            </div>
        </div>
    </div>
</div>

CSS

// social-profile
.social-profile {
    display: flex;
    align-items: center;
    justify-content: center;

    a {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 32px;
        width: 32px;
        margin-right: 15px;
        border-radius: 5px;
        color: var(--color-white);
        border: 1px solid var(--overlay-color);
        background-color: transparent;
        transition: 0.4s;
        &:last-child{
            margin-right: 0;
        }
        svg {
            width: 16px;
            height: 16px;
        }

        &:hover {
            color: var(--color-white);
            border-color: var(--color-primary);
            background-color: var(--color-primary);
        }
    }
}

Java Scripts

const pres = $("pre")
    pres.each(function (i) {
        var $this = $(this),
            $attr = $this.attr('class')
        if ($attr !== undefined) {
            var langName = $this.attr('class').split('-')[1]
        } else {
            var langName = "Text"
        }
        $this.wrap('<div class="code-wrapper"></div>')
        $this.attr('id', 'data-clipboard-target-' + i)
        $this.before('<div class="toolbar"><div class="toolbar-item"><span class="language">' + langName + '</span></div><div class="toolbar-item"><button class="copy-clipboard-code" data-clipboard-target="#data-clipboard-target-' + i + '">copy</button></div></div>')
    })

    var clipboard = new ClipboardJS('.copy-clipboard-code');
    clipboard.on('success', function (e) {
        e.trigger.textContent = 'copied'
        e.clearSelection()

        setTimeout(function () {
            e.clearSelection()
            e.trigger.textContent = 'copy'
        }, 2000)
    });

Few Other Styles

Bold Text: This is Bold text example.
Emphasize: This text is emphasize.
Strike-through: I am A strike-through text.

Hope you will have some good time while on the Blog, Cheers

Press ESC to close.

© 2023 Newsvolt. Published with Ghost & Newsvolt

You've successfully subscribed to Newsvolt
Great! Next, complete checkout for full access to Newsvolt
Welcome back! You've successfully signed in
Success! Your account is fully activated, you now have access to all content.
Success! Your billing info is updated.
Billing info update failed.
Your link has expired.