Posts

Showing posts with the label data Calling

JOB SEEKERS || hubdb with Load more and search

Image
{% set tableId = 966966 %} {% set dynamic_page_hubdb_table_id = 966966 %} {% if dynamic_page_hubdb_row %} <!--- Post Page Code start ---> <div class="job-seeker-post-page-group">   <div class="custom-job-left-container">     <div class="jod-heading">       <h1 class="job-description">Job Description</h1>       <div class="custom-btn-share-container">         <div class="share-outlets clearfix">           <a class="mail" target="_blank" href="mailto:?subject={{dynamic_page_hubdb_row.hs_name}}&amp;body=Check out this {{dynamic_page_hubdb_row.hs_name}} job: {{ content.absolute_url }}" class="product_share_email"><i class="ss-mail"></i></a>           <a class="twitter" target="_blank" href="https://twitter.com/share?url={{ content.absolute_url }}"  class...

Call Data from One Page to Another

{% set module_name = "Event Module" %} {# Set the name Of module #} {% for targeted_module in page_by_id(module.select_page).widgets %} <!-- select_page || page option --> {% if targeted_module.body.widget_name == module_name %} {% set eventList = targeted_module.body.add_event %} <!-- add_event  || Group name of filled data --> <h2>Upcoming Events</h2> <div class="event-module">   <div class="event-item-wrapper">     {% for item in eventList|sort(False, False, 'date') %}     {% if loop.index <= module.number_of_item_to_show %}     <div class="event-item">       <div class="event-image">         {% if item.image.src %}         <img src="{{ item.image.src }}" alt="{{ item.image.alt }}" width="{{ item.image.width }}" height="{{ item.image.height }}">         {% endif %}       </div> ...