Model Examples
No edit summary
No edit summary
Line 136: Line 136:
   </div>
   </div>
  <main>
  <main>
<div class="search-container">
    <input type="text" id="searchBox" onkeyup="searchCards()" placeholder="Search for models..">
  </div>
     <!-- Section for Complete Models -->
     <!-- Section for Complete Models -->
       <h2>Complete Models</h2>
       <h2>Complete Models</h2>
Line 309: Line 312:
         <img src="https://via.placeholder.com/301x175" alt="Placeholder">
         <img src="https://via.placeholder.com/301x175" alt="Placeholder">
         <div class="contentss">
         <div class="contentss">
           <div class="title">Base App</div>
           <div class="title">Test</div>
           <div class="description">You can use this as a starting point or you can merge it with most of the other examples and template models.</div>
           <div class="description">You can use this as a starting point or you can merge it with most of the other examples and template models.</div>
           <div class="download-link">
           <div class="download-link">
Line 363: Line 366:
   </div>
   </div>
</div>
</div>
<script>
function searchCards() {
  var input, filter, cards, title, i, txtValue;
  input = document.getElementById("searchBox");
  filter = input.value.toUpperCase();
  cards = document.getElementsByClassName("cards");
 
  for (i = 0; i < cards.length; i++) {
    title = cards[i].getElementsByClassName("title")[0];
    if (title) {
      txtValue = title.textContent || title.innerText;
      if (txtValue.toUpperCase().indexOf(filter) > -1) {
        cards[i].style.display = "";
      } else {
        cards[i].style.display = "none";
      }
    }     
  }
}
</script>




</html>
</html>

Revision as of 21:38, 7 November 2023

This page was created by Edgar on 2023-11-02. Last edited by Stephanie@mdriven.net on 2025-03-26.

Model Samples
MODEL SAMPLES
Get started with MDriven sample models. Explore our models and choose what you want to build..

Complete Models

Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.

Complete Models

Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.

Complete Models

Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Test
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.
Placeholder
Base App
You can use this as a starting point or you can merge it with most of the other examples and template models.