top of page

Add a Title

Add a Title
Published Date
{postDate}
Tags
0 Comments
Views
Share Post

Comment

successMessage

errorMessage

Add a Title

Add a Title

Add paragraph text. Click “Edit Text” to update the font, size and more. To change and reuse text themes, go to Site Styles.

No comments yet. Be the first to comment!"
01 //
NEWS & UPDATES

Related Posts

Category

{publishedDate}

{postTitle}

{postParagraph}

Start Now
Category

{publishedDate}

{postTitle}

{postParagraph}

Start Now
Category

{publishedDate}

{postTitle}

{postParagraph}

Start Now


import wixData from 'wix-data';
import wixLocation from 'wix-location';

$w.onReady(function () {

 // TODO: write your page related code here...
    updateGallery() 
});

function updateGallery  () {
wixData.query("Blog/Posts").descending("lastPublishedDate").find().then(async (res) => {

 if (res) {

 let info = [];
            res.items.map(async (elem) => {

 if (elem["coverImageDisplayed"]) {

 info.push({ "type": "image", "src": elem["coverImage"], "alt": elem["title"], "title": elem["title"], "description": elem["excerpt"], "link": elem["postPageUrl"] })

                }
            })

            $w("#gallery1").clickAction = "link";

            $w("#gallery1").items = await info.slice(0, 5); // AMOUNT OF SLIDE

        } else {

            $w("#gallery1").collapse()
        }
    })
}

Have fun!

Comentários


bottom of page