Skip to content

Commit e885f12

Browse files
committed
Add XPath video tutorial
1 parent 153d368 commit e885f12

4 files changed

Lines changed: 69 additions & 7 deletions

File tree

content/en/docs/refguide/modeling/xpath/_index.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,11 @@ There are two function types. XPath aggregate functions are for use in Java code
7373

7474
For details, see [XPath aggregate functions](/refguide/xpath-aggregate-functions/) and [XPath constraint functions](/refguide/xpath-constraint-functions/).
7575

76-
## Example
76+
## Video Tutorial
7777

78-
**How to find the right path to XPath**
78+
**Master Mendix XPath**
7979

80-
{{% alert color="info" %}}
81-
This video was done with [Studio Pro 8](/refguide8/), but the concepts remain applicable.
82-
{{% /alert %}}
83-
84-
{{< youtube sdabUY-w4ZU >}}
80+
{{< vidyard "a3nrrw95bKkSFfJc9SW7tg" >}}
8581

8682
## Read More
8783

32 KB
Loading

static/comms/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## mendix/docs/static/comms
2+
3+
This directory is to hold communications which we want to make public but don't want to be part of the documentation navigation.
4+
The files here will be linked from other communication (e.g. email) so please do not rename or remove.

static/comms/entityaccess.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Hello Mendix World!</title>
7+
<style>
8+
/* Basic Mendix-like styling */
9+
body {
10+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
11+
margin: 0;
12+
padding: 0;
13+
background-color: #f0f2f5; /* Light grey background, common in Mendix apps */
14+
display: flex;
15+
justify-content: center;
16+
align-items: center;
17+
min-height: 100vh;
18+
color: #333;
19+
}
20+
.container {
21+
background-color: #ffffff; /* White card background */
22+
border-radius: 8px;
23+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
24+
padding: 40px;
25+
text-align: center;
26+
max-width: 500px;
27+
width: 90%;
28+
}
29+
h1 {
30+
color: #007bff; /* Mendix blue for the main heading */
31+
font-size: 2.5em;
32+
margin-bottom: 20px;
33+
}
34+
p {
35+
font-size: 1.1em;
36+
line-height: 1.6;
37+
color: #555;
38+
}
39+
.mendix-logo {
40+
margin-top: 30px;
41+
font-size: 0.8em;
42+
color: #888;
43+
}
44+
.mendix-logo span {
45+
font-weight: bold;
46+
color: #007bff;
47+
}
48+
</style>
49+
</head>
50+
<body>
51+
<div class="container">
52+
<h1>Hello Mendix World!</h1>
53+
<p>
54+
Welcome to your Mendix-themed static page. This is a simple example to get you started!
55+
Mendix empowers you to build amazing applications, and even static pages can look great.
56+
</p>
57+
<div class="mendix-logo">
58+
Powered by <span>Mendix</span>
59+
</div>
60+
</div>
61+
</body>
62+
</html>

0 commit comments

Comments
 (0)